Changeset 6201 for sampleserver


Ignore:
Timestamp:
Aug 15, 2008, 7:51:05 PM (17 years ago)
Author:
roland
Message:

fixed urls.py for trunkwq

Location:
sampleserver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sampleserver/settings.py.tmpl

    r6183 r6201  
    88
    99ADMINS = (
    10     ('Administrator', 'admin@myinstall.net'),
     10    ('Administrator', 'admin@example.org'),
    1111)
    1212
  • sampleserver/urls.py

    r6180 r6201  
    22from django.conf.urls.defaults import *
    33
     4from django.contrib import admin
     5admin.autodiscover()
     6
    47urlpatterns = patterns('',
    58     (r'^exodus/', include('exodus.urls')),
    6      (r'^admin/', include('django.contrib.admin.urls')),
    7 
    89)
Note: See TracChangeset for help on using the changeset viewer.