equal
deleted
inserted
replaced
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 |