comparison mysite/templates/band/press_detail.html @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children ead7bd49c9e0
comparison
equal deleted inserted replaced
0:df0370bfe3f0 1:0dcfcdf50c62
1 {% extends 'band/base.html' %}
2 {% load markup %}
3 {% block title %}The Madeira | Press{% endblock %}
4 {% block content %}
5 <h1>Madeira Press, Articles, &amp; Reviews</h1>
6 <h2>{{ article.title }}</h2>
7 {% if article.markup_enabled %}
8 {{ article.text|textile }}
9 {% else %}
10 {{ article.text|safe|linebreaks }}
11 {% endif %}
12 <div class="article-source">
13 {{ article.source|safe|linebreaks }}
14 </div>
15 {% if article.url %}
16 <a href="{{ article.url }}" target="_blank">Original article</a>
17 {% endif %}
18 {% if article.pdf and article.url %}
19 |
20 {% endif %}
21 {% if article.pdf %}
22 <a href="{{ article.get_pdf_url }}" target="_blank">Original article as PDF</a>
23 <a href="http://www.adobe.com/products/acrobat/readstep2.html">
24 <img src="{{ MEDIA_URL }}images/get_adobe_reader.gif" alt="Adobe Reader" title="Get Adobe Reader" border="0"
25 align="middle" /></a>
26 {% endif %}
27 <p><a href="{% url mysite.band.views.press_index %}">Press index</a></p>
28 {% endblock %}