Changeset 5fc8fc0082bfa6f10d4a3a4edc64612ee737aab6 for urls.py
- Timestamp:
- 02/11/09 19:38:27 (3 years ago)
- Children:
- 3d3414278502ad60842ab623bcae9692a7b9ec7b
- Parents:
- 920e704d3e590918bbcc96affb46112454862f18
- git-committer:
- Frederic Lepied <frederic.lepied@…> (02/11/09 19:38:27)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
urls.py
r7218e7c r5fc8fc0 2 2 3 3 # Uncomment the next two lines to enable the admin: 4 #from django.contrib import admin5 #admin.autodiscover()4 from django.contrib import admin 5 admin.autodiscover() 6 6 7 7 urlpatterns = patterns('', … … 22 22 (r'^nexttest/(?P<mac>[a-fA-F0-9:-]+)/$', 'tester.views.next_test'), 23 23 24 (r'^$', 'tester.views.index'), 25 (r'^tests/(?P<verid>[0-9]+)/$', 'tester.views.logs'), 26 (r'^test/(?P<logid>[0-9]+)/$', 'tester.views.log'), 27 (r'^testcontent/(?P<logid>[0-9]+)/$', 'tester.views.content'), 28 24 29 # Uncomment the next line to enable the admin: 25 #(r'^admin/(.*)', admin.site.root),30 (r'^admin/(.*)', admin.site.root), 26 31 )
