Minor update.
This commit is contained in:
parent
192ef521a2
commit
22bccd294f
1 changed files with 10 additions and 5 deletions
15
urls.py
15
urls.py
|
|
@ -1,9 +1,14 @@
|
||||||
|
#
|
||||||
|
# File that determines what each URL points to. This uses _Python_ regular
|
||||||
|
# expressions, not Perl's.
|
||||||
|
#
|
||||||
|
# See:
|
||||||
|
# http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
|
||||||
|
#
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import *
|
||||||
|
|
||||||
urlpatterns = patterns('',
|
urlpatterns = patterns('',
|
||||||
# Example:
|
# Admin interface
|
||||||
# (r'^evennia/', include('evennia.apps.foo.urls.foo')),
|
(r'^admin/', include('django.contrib.admin.urls')),
|
||||||
|
|
||||||
# Uncomment this for admin:
|
|
||||||
(r'^admin/', include('django.contrib.admin.urls')),
|
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue