fysm-4-1space-accessstablestagetest-hooks
|
Last change
on this file was
3400018,
checked in by Alex Dehnert <adehnert@…>, 16 years ago
|
|
Use traditional slides
|
-
Property mode set to
100644
|
|
File size:
1.6 KB
|
| Line | |
|---|
| 1 | {% extends "base-plain.html" %} |
|---|
| 2 | {% load formcats %} |
|---|
| 3 | |
|---|
| 4 | {% block title %}{{fysm.display_name}} (FYSM){% endblock %} |
|---|
| 5 | {% block content %} |
|---|
| 6 | <div class='fysm-detail'> |
|---|
| 7 | |
|---|
| 8 | <div class='fysm-navstrip'> |
|---|
| 9 | <p class='back'>{% if prev %} |
|---|
| 10 | <a href='{% url fysm-view year prev.pk %}'>« Previous: {{prev.display_name}}</a> |
|---|
| 11 | {%else%} |
|---|
| 12 | {% endif %}</p> |
|---|
| 13 | |
|---|
| 14 | <p class='forward'>{% if next %} |
|---|
| 15 | <a href='{% url fysm-view year next.pk %}'>Next: {{next.display_name}} »</a> |
|---|
| 16 | {%else%} |
|---|
| 17 | {% endif %}</p> |
|---|
| 18 | |
|---|
| 19 | <p class='up'><a href='{% url fysm year %}'>⬑ Up to Index ⬏</a></p> |
|---|
| 20 | |
|---|
| 21 | <div style='clear: both;'></div> |
|---|
| 22 | </div> |
|---|
| 23 | |
|---|
| 24 | <div class='fysm-summarystrip'> |
|---|
| 25 | <p class='contact'><a href='mailto:{{fysm.contact_email}}'>Contact: {{fysm.contact_email}}</a></p> |
|---|
| 26 | <p class='website'><a href='{% url fysm-link year "website" fysm.pk %}'>Website</a></p> |
|---|
| 27 | <h3 class='display-name'>{{fysm.display_name}}</h3> |
|---|
| 28 | </div> |
|---|
| 29 | |
|---|
| 30 | {% if fysm.slide %} |
|---|
| 31 | <div class='join-preview'> |
|---|
| 32 | <a href='{% url fysm-link year "join" fysm.pk %}'> |
|---|
| 33 | <img src='{{ MEDIA_URL }}{{fysm.slide}}' alt='{{fysm.display_name}} slide' /> |
|---|
| 34 | </a> |
|---|
| 35 | </div> |
|---|
| 36 | {% endif %} |
|---|
| 37 | |
|---|
| 38 | <div class='single-fysm-entry'> |
|---|
| 39 | <div class='fysm-body'> |
|---|
| 40 | <div class='logo'> |
|---|
| 41 | {% if fysm.logo %} |
|---|
| 42 | <img src='{{ MEDIA_URL }}{{fysm.logo}}' alt='{{fysm.display_name}} logo' /> |
|---|
| 43 | {% else %} |
|---|
| 44 | <p>[ No logo ]</p> |
|---|
| 45 | {% endif %} |
|---|
| 46 | </div> |
|---|
| 47 | <p class='data'>{{fysm.description}}</p> |
|---|
| 48 | </div> |
|---|
| 49 | <div style='clear: both;'></div> |
|---|
| 50 | {% if fysm.tags %} |
|---|
| 51 | <p class='tags'>tags: {{fysm.tags}}</p> |
|---|
| 52 | {% endif %} |
|---|
| 53 | {% if fysm.categories.all %} |
|---|
| 54 | <p class='tags'>categories: {{fysm|format_categories:year}}</p> |
|---|
| 55 | {% endif %} |
|---|
| 56 | </div> |
|---|
| 57 | |
|---|
| 58 | </div> |
|---|
| 59 | {% endblock %} |
|---|
| 60 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.