Changeset 549c9e9 for asadb/forms
- Timestamp:
- Jul 16, 2012, 2:30:34 AM (13 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- 68c93e8
- Parents:
- 4cd8b3d
- git-author:
- Alex Dehnert <adehnert@…> (07/16/12 02:30:34)
- git-committer:
- Alex Dehnert <adehnert@…> (07/16/12 02:30:34)
- File:
-
- 1 edited
-
asadb/forms/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
asadb/forms/models.py
r4cd8b3d r549c9e9 17 17 contact_email = models.EmailField(help_text="Give an address for students interested in joining the group to email (e.g., an officers list)") 18 18 description = models.TextField(help_text="Explain, in no more than 400 characters (including spaces), what your group does and why incoming students should get involved.") 19 logo = models.ImageField(upload_to='fysm/logos', blank=True, )20 slide = models.ImageField(upload_to='fysm/slides', default="", help_text="Upload a slide to display on the group detail page. This will be scaled to be at most 600x600 pixels. We recommend making it exactly that size.")19 logo = models.ImageField(upload_to='fysm/logos', blank=True, help_text="Upload a logo (JPG, GIF, or PNG) to display on the main FYSM page as well as the group detail page. This will be scaled to be 100px wide.") 20 slide = models.ImageField(upload_to='fysm/slides', default="", help_text="Upload a slide (JPG, GIF, or PNG) to display on the group detail page. This will be scaled to be at most 600x600 pixels. We recommend making it exactly that size.") 21 21 tags = models.CharField(max_length=100, blank=True, help_text="Specify some free-form, comma-delimited tags for your group", ) 22 22 categories = models.ManyToManyField('FYSMCategory', blank=True, help_text="Put your group into whichever of our categories seem applicable.", )
Note: See TracChangeset
for help on using the changeset viewer.