Changeset 80194d8
- Timestamp:
- May 14, 2010, 2:49:53 AM (16 years ago)
- Branches:
- master, fysm-4-1, iframe, space-access, stable, stage, test-hooks
- Children:
- 59e8bf3
- Parents:
- 02e5709
- git-author:
- Alex Dehnert <adehnert@…> (05/14/10 02:49:53)
- git-committer:
- Alex Dehnert <adehnert@…> (05/14/10 02:49:53)
- Location:
- asadb
- Files:
-
- 3 edited
-
forms/models.py (modified) (1 diff)
-
media/style/style.css (modified) (1 diff)
-
template/fysm/submit.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/forms/models.py
rdafa3c8 r80194d8 10 10 year = models.IntegerField() 11 11 website = models.URLField() 12 join_url = models.URLField( )13 contact_email = models.EmailField( )14 description = models.TextField( )12 join_url = models.URLField(help_text="If you have a specific web page for students interested in joining your group, you can link to it here. If you leave this blank it will default to your website.") 13 contact_email = models.EmailField(help_text="Give an address for students interested in joining the group to email (e.g., an officers list)") 14 description = models.TextField(help_text="Explain in about three or four sentences what your group does and why incoming freshmen should get involved.") 15 15 logo = models.ImageField(upload_to='fysm/logos', ) 16 16 tags = models.ManyToManyField('FYSMTag', blank=True, ) -
asadb/media/style/style.css
r493de25 r80194d8 147 147 } 148 148 149 .fysm-submit td 150 { 151 max-width: 30em; 152 font-size: smaller; 153 } -
asadb/template/fysm/submit.html
r90afb00 r80194d8 3 3 {% block title %}First Year Summer Mailing submission{% endblock %} 4 4 {% block content %} 5 <div class='fysm-submit'> 5 6 6 7 <h2>First Year Summer Mailing submission</h2> … … 15 16 </form> 16 17 18 </div> 17 19 {% endblock %}
Note: See TracChangeset
for help on using the changeset viewer.