I found several questions about restricting concurrent multiple logins from the same user in Django but what I am looking for is the opposite. I want to have a "generic guest" user that several people can login with and have access to specific functionality. Is there an actual limit? Do you see any major problems with this approach?
|
|
|
If your asking about multiple users sharing the same account or even session, this is a very bad idea. Have you looked at django-guest? It allows guest user accounts and is what your looking for. It provides two decorators, Also Django has `class models.AnonymousUser' but this is just a status given to users not logged in and maybe be what your after. |
|||||||||||
|
|
Here is how I would do it: Create a multi paged form.
Use Django's Form Wizard: https://docs.djangoproject.com/en/dev/ref/contrib/formtools/form-wizard/ the wizard shows page 1 and wont let the user get to page 2 until the user answers page 1 correctly (ie password). That way users cannot get to the survey unless they have a valid password. This solution doesn't use django's auth and should get you around all the session stuff thats blocking you from moving forward. |
|||
|

