app/soc/models/organization.py
changeset 745 ed3b545a9c14
parent 682 187f4d95fedb
child 748 f00e6b3af5a6
equal deleted inserted replaced
744:cd9bf163473c 745:ed3b545a9c14
    35    reviewers)  a many:1 relationship associating Reviewers with
    35    reviewers)  a many:1 relationship associating Reviewers with
    36      a specific Organization. This relation is implemented as the
    36      a specific Organization. This relation is implemented as the
    37      'reviewers' back-reference Query of the Organization model 'org'
    37      'reviewers' back-reference Query of the Organization model 'org'
    38      reference.
    38      reference.
    39   """
    39   """
    40 
    40   
    41   #: Type name used in templates
    41   pass
    42   TYPE_NAME = ugettext_lazy('Organization')
       
    43   #: Type short name used for example in urls
       
    44   TYPE_NAME_SHORT = 'org'
       
    45   #: Type plural name used in templates
       
    46   TYPE_NAME_PLURAL = ugettext_lazy('Organizations')