1
from django.conf.urls.defaults import *
3
# Uncomment the next two lines to enable the admin:
4
from django.contrib import admin
10
urlpatterns = patterns('',
12
(r'main/$', include('widelands.mainpage.urls')),
14
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
15
# to INSTALLED_APPS to enable admin documentation:
16
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
18
# Uncomment the next line to enable the admin:
19
(r'^admin/', include(admin.site.urls)),
20
(r'^wiki/', include(wiki.urls)),