web/hdalab/urls.py
changeset 114 c59383cc9940
child 119 e3ebe3545f72
equal deleted inserted replaced
113:0d2bfd84b989 114:c59383cc9940
       
     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 )