Changeset 6229687
- Timestamp:
- Feb 1, 2012, 10:20:20 AM (14 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- ab32c07
- Parents:
- 9e6b8b7
- git-author:
- Alex Dehnert <adehnert@…> (02/01/12 10:20:20)
- git-committer:
- Alex Dehnert <adehnert@…> (02/01/12 10:20:20)
- File:
-
- 1 edited
-
asadb/template/index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/template/index.html
r4aff789 r6229687 8 8 <p>Here you can find and submit information about groups recognized by the <a href='http://web.mit.edu/asa/'>MIT Association of Student Activities</a>.</p> 9 9 10 <div class='toolbox'> 10 <h2>My Groups</h2> 11 12 {% if user.is_anonymous %} 13 <p><a href='{% url login %}'>Login</a> to see your groups.</p> 14 {% else %} 15 {%if not groups %} 16 <p>You do not currently appear to be listed with any groups.</p> 17 {% endif %} 18 {% endif %} 19 20 {% if groups %} 21 <ul> 22 {% for group in groups %} 23 <li><a href='{% url groups:group-detail group.pk %}'>{{group}}</a></li> 24 {%endfor%} 25 </ul> 26 {% endif %} 27 11 28 <h2>Tools</h2> 12 29 <ul> … … 38 55 </ul></li> 39 56 </ul> 40 </div>41 42 <h2>My Groups</h2>43 44 {% if user.is_anonymous %}45 <p><a href='{% url login %}'>Login</a> to see your groups.</p>46 {% else %}47 {%if not groups %}48 <p>You do not currently appear to be listed with any groups.</p>49 {% endif %}50 {% endif %}51 52 {% if groups %}53 <ul>54 {% for group in groups %}55 <li><a href='{% url groups:group-detail group.pk %}'>{{group}}</a></li>56 {%endfor%}57 </ul>58 {% endif %}59 57 60 58 {% if has_perms %}
Note: See TracChangeset
for help on using the changeset viewer.