equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 from django.conf.urls.defaults import patterns, include, url |
|
3 from django.contrib import admin |
|
4 |
|
5 # Uncomment the next two lines to enable the admin: |
|
6 # from django.contrib import admin |
|
7 # admin.autodiscover() |
|
8 |
|
9 urlpatterns = patterns('', |
|
10 # Examples: |
|
11 # url(r'^$', 'hdalab.views.home', name='home'), |
|
12 # url(r'^hdalab/', include('hdalab.foo.urls')), |
|
13 |
|
14 # Uncomment the admin/doc line below to enable admin documentation: |
|
15 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
16 |
|
17 # Uncomment the next line to enable the admin: |
|
18 url(r'^admin/', include(admin.site.urls)), |
|
19 |
|
20 |
|
21 ) |