source: waeup/branches/ulif-rewrite/src/waeup/university/facultycontainer.py @ 3797

Last change on this file since 3797 was 3527, checked in by adiwidjaja, 17 years ago

Base management structures.

  • Property svn:eol-style set to native
File size: 212 bytes
Line 
1import grok
2from waeup.basecontainer import BaseContainer
3from interfaces import IFaculty
4from faculty import Faculty
5
6class FacultyContainer(BaseContainer):
7   
8    name = u'Faculties'
9    childClass = Faculty
Note: See TracBrowser for help on using the repository browser.