source: asadb/template/fysm/fysm_detail.html @ 6fe1ad0

fysm-4-1space-accessstablestagetest-hooks
Last change on this file since 6fe1ad0 was 6fe1ad0, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Better 'Up to Index'

  • Property mode set to 100644
File size: 1.4 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 %}'>&laquo; Previous: {{prev.display_name}}</a>
11{%else%}&nbsp;
12{% endif %}</p>
13
14<p class='forward'>{% if next %}
15<a href='{% url fysm-view year next.pk %}'>Next: {{next.display_name}} &raquo;</a>
16{%else%}&nbsp;
17{% endif %}</p>
18
19<p class='up'><a href='{% url fysm year %}'>&#x2B11; Up to Index &#x2B0F</a></p>
20
21<div style='clear: both;'></div>
22</div>
23
24<div class='single-fysm-entry'>
25    <h3>
26        <a href='{{fysm.website}}'>{{fysm.display_name}}</a>
27    </h3>
28    <div class='fysm-body'>
29    <div class='logo'>
30        {% if fysm.logo %}
31        <img src='{{ MEDIA_URL }}{{fysm.logo}}' alt='{{fysm.display_name}} logo' />
32        {% else %}
33        <p>[ No logo ]</p>
34        {% endif %}
35    </div>
36    <p class='data'>{{fysm.description}}</p>
37    <p class='join'><a href='{{fysm.join_url}}'>Join {{fysm.display_name}}!</a> Have questions? Send them to <a href='mailto:{{fysm.contact_email}}'>{{fysm.contact_email}}</a>!</p>
38    </div>
39    {% if fysm.tags %}
40    <p class='tags'>tags: {{fysm.tags}}</p>
41    {% endif %}
42    {% if fysm.categories.all %}
43    <p class='tags'>categories: {{fysm|format_categories:year}}</p>
44    {% endif %}
45</div>
46
47</div>
48{% endblock %}
49
Note: See TracBrowser for help on using the repository browser.