-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Installation
1. Version of django changed
1.1 Delete & Reinstall django
∂ Current version: 1.8
# pip uninstall django // Delete previous version
# pip install django==1.8
1.2 Change /capstone/settings.py
Since the version of django has changed, name of settings parameter also changed.
/capstone/settings.py At line number 46
MIDDLEWARE = [ ========> MIDDLEWARE_CLASSES = [
1.3 Change
because version of 1.8 does not support 'is' syntax anymore, it is changed into '=='
1. terra/template/*.html
At Multiple lines
if "something" is "something" ======> if "something" == "something"
2. login/template/*.html
At Multiple lines
if "something" is "something" ======> if "something" == "something"
Metadata
Metadata
Assignees
Labels
No labels