Changeset - 21649ff645ee
[Not reviewed]
0 1 0
Branko Majic (branko) - 9 years ago 2016-11-06 20:03:39
branko@majic.rs
Noticket: Use docs_version variable in Django 1.8 project template.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
project-django-1.8/project_name/settings/base.py
Show inline comments
 
@@ -9,16 +9,16 @@
 
# development.py
 
# testing.py
 
# staging.py
 
# production.py
 
#
 
# For more information on this file see
 
# https://docs.djangoproject.com/en/1.8/topics/settings/
 
# https://docs.djangoproject.com/en/{{ docs_version }}/topics/settings/
 
#
 
# For the full list of settings and their values, see
 
# https://docs.djangoproject.com/en/1.8/ref/settings/
 
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
 

	
 

	
 
# Base paths for accessing project root directory and directory where assets are
 
# stored. Other paths can be built relative to these directories with:
 
# os.path.join(BASE_DIR, ...)
 
# os.path.join(ASSETS_DIR, ...)
 
@@ -77,13 +77,13 @@ TEMPLATES = [
 
# WSGI application module for running the project.
 
WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
 

	
 
# Language, internationalisation, and time configuration.
 
#
 
# For details see
 
# https://docs.djangoproject.com/en/1.8/topics/i18n/
 
# https://docs.djangoproject.com/en/{{ docs_version }}/topics/i18n/
 
LANGUAGE_CODE = 'en-us'
 
TIME_ZONE = 'Europe/Stockholm'
 
USE_I18N = True
 
USE_L10N = True
 
USE_TZ = True
 

	
0 comments (0 inline, 0 general)