Show
Ignore:
Timestamp:
02/11/09 19:38:27 (3 years ago)
Author:
Frederic Lepied <frederic.lepied@…>
Children:
3d3414278502ad60842ab623bcae9692a7b9ec7b
Parents:
920e704d3e590918bbcc96affb46112454862f18
git-committer:
Frederic Lepied <frederic.lepied@…> (02/11/09 19:38:27)
Message:

- activated admin interface by default.
- put in place a mini web site to navigate through the tests reports.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • urls.py

    r7218e7c r5fc8fc0  
    22 
    33# Uncomment the next two lines to enable the admin: 
    4 #from django.contrib import admin 
    5 #admin.autodiscover() 
     4from django.contrib import admin 
     5admin.autodiscover() 
    66 
    77urlpatterns = patterns('', 
     
    2222    (r'^nexttest/(?P<mac>[a-fA-F0-9:-]+)/$', 'tester.views.next_test'), 
    2323     
     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 
    2429    # Uncomment the next line to enable the admin: 
    25     #(r'^admin/(.*)', admin.site.root), 
     30    (r'^admin/(.*)', admin.site.root), 
    2631)