Changeset fbb362a for asadb/template
- Timestamp:
- Aug 25, 2011, 10:53:03 PM (14 years ago)
- Branches:
- master, space-access, stable, stage, test-hooks
- Children:
- 9b391ce, 165e5aa
- Parents:
- d3167b9
- git-author:
- Alex Dehnert <adehnert@…> (08/25/11 22:53:03)
- git-committer:
- Alex Dehnert <adehnert@…> (08/25/11 22:53:03)
- Location:
- asadb/template
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
asadb/template/base.html
r386ea2a rfbb362a 12 12 <ul class='tab-navigation'> 13 13 <li{% ifequal pagename "homepage" %} class='selected'{% endifequal %}><a href="{% url homepage %}">Home</a></li> 14 <li{% ifequal pagename "groups" %} class='selected'{% endifequal %}><a href="{% url group -list %}">Groups</a></li>14 <li{% ifequal pagename "groups" %} class='selected'{% endifequal %}><a href="{% url groups:list %}">Groups</a></li> 15 15 <li{% ifequal pagename "fysm" %} class='selected'{% endifequal %}><a href="{% url fysm %}">FYSM</a></li> 16 16 {% if user.is_staff %}<li><a href='{% url admin:index %}'>Admin</a></li>{% endif %} -
asadb/template/groups/group_change_main.html
rf27faaf rfbb362a 20 20 21 21 <ul> 22 <li><a href='{% url group -manage-history group.pk %}'>View update history</a></li>23 <li><a href='{% url group -manage-officers group.pk %}'>Update officers, signatories, etc.</a></li>22 <li><a href='{% url groups:group-manage-history group.pk %}'>View update history</a></li> 23 <li><a href='{% url groups:group-manage-officers group.pk %}'>Update officers, signatories, etc.</a></li> 24 24 </ul> 25 25 -
asadb/template/groups/group_change_officers.html
r2abe1dc rfbb362a 87 87 88 88 <ul> 89 <li><a href='{% url group -manage-main group.pk %}'>View main update page</a></li>90 <li><a href='{% url group -manage-officers group.pk %}'>Reload this page</a></li>89 <li><a href='{% url groups:group-manage-main group.pk %}'>View main update page</a></li> 90 <li><a href='{% url groups:group-manage-officers group.pk %}'>Reload this page</a></li> 91 91 </ul> 92 92 -
asadb/template/groups/group_detail.html
r3107c52 rfbb362a 5 5 6 6 <h1>{{group.name}}{% if group.abbreviation %} ({{group.abbreviation}}){%endif%} 7 {% if adminpriv %}<a href='{%url group -manage-main group.pk %}'>[update]</a></p>{%endif%}7 {% if adminpriv %}<a href='{%url groups:group-manage-main group.pk %}'>[update]</a></p>{%endif%} 8 8 </h1> 9 9 -
asadb/template/groups/group_list.html
r1de230f rfbb362a 32 32 <th>{{group.name}}</th> 33 33 <td>{% if group.website_url %}<a href='{{group.website_url}}'>Website</a>{%endif%}</td> 34 <td><a href='{% url group -detail group.pk %}'>DB Entry</a></td>34 <td><a href='{% url groups:group-detail group.pk %}'>DB Entry</a></td> 35 35 <td>{{group.description}}</td> 36 36 <td>{{group.meeting_times}}</td> -
asadb/template/groups/group_version.html
r9f9aa21 rfbb362a 17 17 <tr> 18 18 <td>{{version.object_id}}</td> 19 <td><a href='{% url group -detail version.object_id %}'>{{version.object_repr}}</a></td>19 <td><a href='{% url groups:group-detail version.object_id %}'>{{version.object_repr}}</a></td> 20 20 <td>{{version.revision.date_created}}</td> 21 21 <td>{% if version.revision.user %}{{version.revision.user}}{%else%}<i>System</i>{%endif%}</td> -
asadb/template/groups/groups_signatories.html
r9ea4909 rfbb362a 46 46 {%for group, role_list in officers %} 47 47 <tr> 48 <th><a href='{% url group -detail group.pk %}'>{{group}}</a></th>48 <th><a href='{% url groups:group-detail group.pk %}'>{{group}}</a></th> 49 49 {%for holders in role_list%} 50 50 <td>{% if holders %}<ul>{% for person in holders %}<li>{{person}}</li>{%endfor%}</ul>{% endif %}</td> -
asadb/template/index.html
r6a646ce rfbb362a 7 7 8 8 <ul> 9 <li><a href='{%url group -search%}'>Search groups</a></li>10 <li><a href='{%url group -list%}'>List of groups</a></li>9 <li><a href='{%url groups:search%}'>Search groups</a></li> 10 <li><a href='{%url groups:list%}'>List of groups</a></li> 11 11 <li>First Year Summer Mailing<ul> 12 12 <li><a href='{%url fysm%}'>View the entries</a></li> 13 13 <li><a href='{%url fysm-select%}'>Submit an entry</a></li> 14 14 </ul></li> 15 {%if perms.groups.view_signatories %}<li><a href='{% url groups -signatories %}'>View Signatories</a></li>{%endif%}15 {%if perms.groups.view_signatories %}<li><a href='{% url groups:signatories %}'>View Signatories</a></li>{%endif%} 16 16 </ul> 17 17 … … 29 29 <ul> 30 30 {% for group in groups %} 31 <li><a href='{% url group -detail group.pk %}'>{{group}}</a></li>31 <li><a href='{% url groups:group-detail group.pk %}'>{{group}}</a></li> 32 32 {%endfor%} 33 33 </ul>
Note: See TracChangeset
for help on using the changeset viewer.