mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
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 *
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Example:
|
||||
# (r'^evennia/', include('evennia.apps.foo.urls.foo')),
|
||||
|
||||
# Uncomment this for admin:
|
||||
(r'^admin/', include('django.contrib.admin.urls')),
|
||||
# Admin interface
|
||||
(r'^admin/', include('django.contrib.admin.urls')),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue