diff --git a/opentech/apply/models.py b/opentech/apply/models.py index 59d54bec410fdd7d8e2e53134c4e08b575650daf..1c7355922a3ae9f6faa5c8a63243b13828f5da9d 100644 --- a/opentech/apply/models.py +++ b/opentech/apply/models.py @@ -100,6 +100,11 @@ class Option(Orderable): class Category(ClusterableModel): + """Used to manage the global select questions used in most of the application form + Also used in the front end by editors when writing about projects. + + When used in a form: name -> field label and help_text -> help_text + """ name = models.CharField(max_length=255) help_text = models.CharField(max_length=255, blank=True)