Browse Source

web/urls.py: add urlpattern for site-index

pull/1/head
Hidden Z 14 years ago
parent
commit
a2901385d9
  1. 3
      web/urls.py

3
web/urls.py

@ -4,7 +4,10 @@ from django.conf.urls.defaults import * @@ -4,7 +4,10 @@ from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
from web.other.views import *
urlpatterns = patterns('',
url(r'^$', index, name='index'),
(r'^postkey/', include('web.postkey.urls')),
(r'^jump/', include('web.jump.urls')),
# Example:

Loading…
Cancel
Save