Changeset bd72d5c for asadb/template/groups
- Timestamp:
- Sep 15, 2011, 3:34:54 PM (15 years ago)
- Branches:
- master, space-access, stable, stage, test-hooks
- Children:
- 5c68184
- Parents:
- ceaf3bd (diff), fbb362a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Alex Dehnert <adehnert@…> (09/15/11 15:34:54)
- git-committer:
- Alex Dehnert <adehnert@…> (09/15/11 15:34:54)
- Location:
- asadb/template/groups
- Files:
-
- 8 added
- 1 edited
-
group_change_main.html (added)
-
group_change_officers.html (added)
-
group_detail.html (added)
-
group_list.html (modified) (2 diffs)
-
group_search.html (added)
-
group_version.html (added)
-
groups_signatories.html (added)
-
note/detail.head.html (added)
-
note/detail.row.html (added)
Legend:
- Unmodified
- Added
- Removed
-
asadb/template/groups/group_list.html
r140fc9e rfbb362a 6 6 <h1>MIT Student Groups</h1> 7 7 8 <h2>Search</h2> 9 10 <form action="" method="get"> 11 <table class='pretty-table'> 12 {{ filter.form.as_table }} 13 </table> 14 <input type="submit" value="Search" /> 15 </form> 16 17 <h2>The Groups</h2> 18 8 19 <table class='pretty-table'> 9 20 <thead> 10 21 <tr> 11 22 <th>Name</th> 23 <th>Website</th> 24 <th>ASA DB</th> 25 <th>Description</th> 12 26 <th>Meeting Time</th> 13 27 </tr> … … 16 30 {% for group in group_list %} 17 31 <tr> 18 <td>{% if group.website_url %}<a href='{{group.website_url}}'>{% endif %}{{group.name}}{%if group.website_url%}</a>{%endif%}</td> 32 <th>{{group.name}}</th> 33 <td>{% if group.website_url %}<a href='{{group.website_url}}'>Website</a>{%endif%}</td> 34 <td><a href='{% url groups:group-detail group.pk %}'>DB Entry</a></td> 35 <td>{{group.description}}</td> 19 36 <td>{{group.meeting_times}}</td> 20 37 </tr>
Note: See TracChangeset
for help on using the changeset viewer.