app/soc/models/school.py
changeset 208 e076aee6e90f
parent 181 fdd29818a954
child 316 9efdc7bc3565
--- a/app/soc/models/school.py	Mon Sep 29 15:34:40 2008 +0000
+++ b/app/soc/models/school.py	Mon Sep 29 15:46:42 2008 +0000
@@ -27,7 +27,7 @@
 import soc.models.group
 
 
-class School(base.ModelWithFieldAttributes):
+class School(soc.models.group.Group):
   """Details specific to a School.
 
   A School is a specific type of Group that gathers Students together.
@@ -39,9 +39,5 @@
      belonging to) a School.  This relation is implemented as the 'students'
      back-reference Query of the Student model 'school' reference.
   """
+  pass
 
-  #: Required 1:1 relationship that ties School details to the more
-  #: generic Group details.  The back-reference in the Group model is a
-  #: Query named 'school'.
-  group = db.ReferenceProperty(reference_class=soc.models.group.Group,
-                               required=True, collection_name="school")