Allow only one concurrent login per user in django app

django, python

Solution

This question is mostly answered here (stackoverflow.com).

Problem

is it possible to allow only one concurrent login per user in django application? if yes, how do you approach?

Original source

Related problems