app/soc/models/organization.py
changeset 344 d135c8c09967
parent 316 9efdc7bc3565
child 369 2955eff2bf94
equal deleted inserted replaced
343:1c96c36b58db 344:d135c8c09967
    37    reviewers)  a many:1 relationship associating Reviewers with
    37    reviewers)  a many:1 relationship associating Reviewers with
    38      a specific Organization. This relation is implemented as the
    38      a specific Organization. This relation is implemented as the
    39      'reviewers' back-reference Query of the Organization model 'org'
    39      'reviewers' back-reference Query of the Organization model 'org'
    40      reference.
    40      reference.
    41   """
    41   """
    42   pass
    42 
       
    43   #: Group type short name used for example in urls
       
    44   GROUP_TYPE_SHORT = 'org'
       
    45   #: Group type plural name used in Group templates
       
    46   GROUP_TYPE_PLURAL = 'Organizations'