Changeset 3951 for waeup/branches/ulif-rewrite
- Timestamp:
- 9 Feb 2009, 22:07:02 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/student/studentcontainer.py
r3947 r3951 1 1 import grok 2 2 import os 3 4 from waeup.basecontainer import BaseContainer5 3 from waeup.interfaces import IStudentContainer 6 from student import Student, fromCsv7 4 from waeup.utils import importexport as csv 8 5 9 class StudentContainer( BaseContainer):6 class StudentContainer(grok.Container): 10 7 """ 11 8 The node containing the student models … … 14 11 grok.implements(IStudentContainer) 15 12 16 name = u"Students"17 childClass = Student18 specialActions = [u"import", u"export"]19 20 21 13 22 14 class Import(grok.View):
Note: See TracChangeset for help on using the changeset viewer.