Skip to content

What i did __ 2017_12_30 #6

@InfiniteRegen

Description

@InfiniteRegen

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions