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.

Location:
pxe
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pxe/models.py

    r1f8d77d r5fc8fc0  
    2525    system = models.ForeignKey(System) 
    2626    boot_name = models.ForeignKey(BootName) 
    27      
     27 
     28from django.contrib import admin 
     29admin.site.register(System) 
     30admin.site.register(MacAddress) 
     31admin.site.register(BootName) 
     32admin.site.register(Log) 
     33 
    2834# models.py ends here 
  • pxe/views.py

    r8784ede r5fc8fc0  
    1010from django.http import HttpResponse, Http404 
    1111from django.shortcuts import get_object_or_404 
    12 from common import * 
    13 from models import * 
     12from pxe.common import * 
     13from pxe.models import * 
    1414 
    1515def localboot1(request):