Changeset 6216


Ignore:
Timestamp:
Aug 19, 2008, 5:56:27 PM (16 years ago)
Author:
roland
Message:

Changed DJANGOROOT in settings.py to:
os.path.dirname(file) + '/../'
This makes sure that settings.py is host independent.
Changed templates node-list.html, removed the trailing slash; for genesis compatibility
as done before on urls.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sampleserver/settings.py.tmpl

    r6201 r6216  
    11# Django settings for exodus project.
     2import os
    23
    3 #Set to
    4 DJANGOROOT = '/Users/rick/svn/wleiden/code/exodus'
     4DJANGOROOT= os.path.dirname(__file__) + '/../'
    55
    66DEBUG = True
     
    6161    'django.contrib.sites',
    6262    'django.contrib.admin',
     63        'django.contrib.databrowse',
     64        'django_extensions',
    6365    'exodus',
    6466)
Note: See TracChangeset for help on using the changeset viewer.