app/soc/models/document.py
changeset 1262 e2e5b7798746
parent 1191 bb530ca58bc5
child 1307 091a21cf3627
equal deleted inserted replaced
1261:95b858816568 1262:e2e5b7798746
    46 
    46 
    47   URL_NAME = 'document'
    47   URL_NAME = 'document'
    48 
    48 
    49   #: field storing the prefix of this document
    49   #: field storing the prefix of this document
    50   prefix = db.StringProperty(default='user', required=True,
    50   prefix = db.StringProperty(default='user', required=True,
    51       choices=['site', 'club', 'sponsor', 'program', 'organization', 'user'],
    51       choices=['site', 'club', 'sponsor', 'program', 'org', 'user'],
    52       verbose_name=ugettext('Prefix'))
    52       verbose_name=ugettext('Prefix'))
    53   prefix.help_text = ugettext(
    53   prefix.help_text = ugettext(
    54       'Indicates the prefix of the document,'
    54       'Indicates the prefix of the document,'
    55       ' determines which access scheme is used.')
    55       ' determines which access scheme is used.')
    56 
    56