diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-06 00:49:09 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-06 00:49:09 +0100 |
commit | d1cd72c5f88c581b8e446f3c92c0eb093500c60e (patch) | |
tree | 0b40a627ee461f1d03ca4b1a94e0c09d67b55e32 /core/views/other.py | |
parent | 6d6bec35f271b5ff072a884fbfc31f5b9cb36642 (diff) | |
download | troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.tar.gz troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.tar.bz2 troggle-d1cd72c5f88c581b8e446f3c92c0eb093500c60e.zip |
New user login/logoff system using standard Dj
Diffstat (limited to 'core/views/other.py')
-rw-r--r-- | core/views/other.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/other.py b/core/views/other.py index 4f53ead..b6e3422 100644 --- a/core/views/other.py +++ b/core/views/other.py @@ -35,8 +35,8 @@ def showrequest(request): return HttpResponse(request.GET) def frontpage(request): - '''never seen in practice''' - # bthe messages system does a popup on this page if there is a recent message, e.g. from the admin site actions. + '''never seen in common practice. Logon should redirect here when this is more useful''' + # the messages system does a popup on this page if there is a recent message, e.g. from the admin site actions. # via django.contrib.messages.middleware.MessageMiddleware # this is set in the templates. if request.user.is_authenticated(): |