blob: 7b3ff3597a73d6bd6599ea5cdaa2612b6163c5c9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | from django.conf.urls import patterns, include
from django.contrib import admin
from django.views.generic import TemplateView
admin.autodiscover()
urlpatterns = patterns('',
    (r'^$', TemplateView.as_view(template_name='index.html')),
    (r'^jquery/$', TemplateView.as_view(template_name='jquery/index.html')),
    (r'^mootools/$', TemplateView.as_view(template_name='mootools/index.html')),
    (r'^prototype/$', TemplateView.as_view(template_name='prototype/index.html')),
    (r'^admin/', include(admin.site.urls)),
)
 |