app/soc/models/school.py
changeset 344 d135c8c09967
parent 316 9efdc7bc3565
child 369 2955eff2bf94
equal deleted inserted replaced
343:1c96c36b58db 344:d135c8c09967
    38 
    38 
    39    students)  a 1:many relationship of Students attending (or otherwise
    39    students)  a 1:many relationship of Students attending (or otherwise
    40      belonging to) a School.  This relation is implemented as the 'students'
    40      belonging to) a School.  This relation is implemented as the 'students'
    41      back-reference Query of the Student model 'school' reference.
    41      back-reference Query of the Student model 'school' reference.
    42   """
    42   """
    43   pass
       
    44 
    43 
       
    44   #: Group type short name used for example in urls
       
    45   GROUP_TYPE_SHORT = 'school'
       
    46   #: Group type plural name used in Group templates
       
    47   GROUP_TYPE_PLURAL = 'Schools'
       
    48