app/soc/models/organization.py
changeset 834 b60c9ccbeaa5
parent 775 d18d286df40f
child 883 1e0af43577ee
--- a/app/soc/models/organization.py	Tue Jan 20 16:03:55 2009 +0000
+++ b/app/soc/models/organization.py	Tue Jan 20 16:08:16 2009 +0000
@@ -46,4 +46,12 @@
     verbose_name=ugettext_lazy('Development Mailing List'))
   dev_mailing_list.help_text = ugettext_lazy(
     'Mailing list email address, URL to sign-up page, etc.')
+    
+  member_template = db.ReferenceProperty(
+    reference_class=soc.models.document.Document, required=False,
+    collection_name='group_app_member_template',
+    verbose_name=ugettext_lazy('Application template'))
+  member_template.help_text = ugettext_lazy(
+    'This template will be presented to potential members when they'
+    ' apply to the group.')