app/soc/models/organization.py
changeset 2037 3f355dca3679
parent 1994 bf64992d08c4
child 2129 f6ca1647bff7
--- a/app/soc/models/organization.py	Mon Mar 30 22:38:08 2009 +0000
+++ b/app/soc/models/organization.py	Mon Mar 30 22:52:15 2009 +0000
@@ -62,3 +62,12 @@
   slots_desired.help_text = ugettext(
       'The amount of slots desired by this organization.')
 
+  nr_applications = db.IntegerProperty(required=False, default=0,
+      verbose_name=ugettext('Amount of applications received'))
+  nr_applications.help_text = ugettext(
+      'The amount of applications received by this organization.')
+
+  nr_mentors = db.IntegerProperty(required=False, default=0,
+      verbose_name=ugettext('Amount of mentors assigned'))
+  nr_mentors.help_text = ugettext(
+      'The amount of mentors assigned to a proposal by this organization.')