summaryrefslogtreecommitdiffstats
path: root/st_web/urls.py
blob: ee0152a31c248a51212e4e43cfda090a24089e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
from django.conf.urls.defaults import *

urlpatterns = patterns('',
    # Example:
    (r'^$', 'django.views.generic.simple.direct_to_template', {'template': 'st_web/index.html'}),
    (r'^install/$', 'st_web.views.install'),
    (r'^virtinstall/$', 'st_web.views.virtinstall'),

    # Uncomment this for admin:
#     (r'^admin/', include('django.contrib.admin.urls')),
)