Changeset 6202
- Timestamp:
- Aug 15, 2008, 8:27:51 PM (17 years ago)
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TODO
r6195 r6202 10 10 ** allignment input fields 11 11 ** combine input fields where possible and link 12 ** Interlink add code 13 ->generate ipaddresses for Link, 14 ->netmask for LinkPool 15 ->status 16 ->desc 12 17 13 18 * Genesis compatibility -
exodus/models.py
r6199 r6202 154 154 def __str__(self): 155 155 return self.hostname 156 157 from django.contrib import admin 158 159 admin.site.register(NICType) -
sampleserver/urls.py
r6201 r6202 6 6 7 7 urlpatterns = patterns('', 8 (r'^exodus/', include('exodus.urls')), 8 (r'^exodus/', include('exodus.urls')), 9 #The next line enables admin documents 10 (r'^admin/doc/', include('django.contrib.admindocs.urls')), 11 12 # Uncomment the next line for to enable the admin: 13 (r'^admin/(.*)', admin.site.root), 14 9 15 )
Note:
See TracChangeset
for help on using the changeset viewer.