first efforts bumping to django-1.8.4
- most things are working - I had to throw away the db and run `manage.py migrate` - the top-nav in once logged in is still broken
This commit is contained in:
parent
5717a10402
commit
43260fb59f
4 changed files with 10 additions and 7 deletions
|
|
@ -119,7 +119,7 @@
|
|||
<div class="span4">
|
||||
<div class="well">
|
||||
<h4>Login</h4>
|
||||
<form class="form" action="/account/login/?next={% url account.views.home %}"
|
||||
<form class="form" action="/account/login/?next=/"
|
||||
method="post">
|
||||
{% csrf_token %}
|
||||
{{ login_form|crispy }}
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ INSTALLED_APPS = (
|
|||
'django.contrib.staticfiles',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.admindocs',
|
||||
'jsonrpc',
|
||||
#'jsonrpc', # STUBBED due to django-1.8.4 upgraded
|
||||
'crispy_forms',
|
||||
# 'cbmi',
|
||||
'account',
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import sys
|
|||
if __name__ == "__main__":
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cbmi.settings")
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
application = get_wsgi_application()
|
||||
|
||||
from django.core.management import execute_from_command_line
|
||||
|
||||
execute_from_command_line(sys.argv)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
Django==1.4.2
|
||||
MySQL-python==1.2.4
|
||||
django-auth-ldap==1.1.4
|
||||
django-json-rpc==0.6.1
|
||||
django-crispy-forms==1.4.0
|
||||
Django==1.8.4
|
||||
#MySQL-python==1.2.5
|
||||
django-auth-ldap==1.2.6
|
||||
django-json-rpc
|
||||
django-crispy-forms==1.5.2
|
||||
pycrypto==2.6.1
|
||||
smbpasswd==1.0.2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue