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