# HG changeset patch # User Branko Majic # Date 2013-06-22 22:27:45 # Node ID 71d991001a67a3dd1a3b1b88a3b36f530863639a # Parent 2755f34f36d73db9feb4b6d46a03203f97373dbd Added braces application to test project. Defined login URL name. diff --git a/projtest/projtest/settings.py b/projtest/projtest/settings.py --- a/projtest/projtest/settings.py +++ b/projtest/projtest/settings.py @@ -129,6 +129,8 @@ INSTALLED_APPS = ( 'conntrackt', # Database migrations 'south', + # Generic mixins for Django. + 'braces', ) # A sample logging configuration. The only tangible logging @@ -159,3 +161,6 @@ LOGGING = { }, } } + +# View that should be called for log-in action. +LOGIN_URL="login"