-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.py
executable file
·25 lines (21 loc) · 967 Bytes
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from django.conf.urls.defaults import *
from django.conf import settings
from tkldevenv_webapp.views import *
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
# Example:
(r'^patchtool/', include('tkldevenv_webapp.patchtool.urls')),
(r'^baseimages/', include('tkldevenv_webapp.baseimages.urls')),
(r'^patches/', include('tkldevenv_webapp.patches.urls')),
(r'^projects/', include('tkldevenv_webapp.projects.urls')),
(r'^output/', include('tkldevenv_webapp.output.urls')),
# (r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
# {'document_root': settings.STATIC_DOC_ROOT}),
(r'^$', main)
# Uncomment the admin/doc line below to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
# (r'^admin/', include(admin.site.urls)),
)