Mercurial > public > sg101
comparison gpp/templates/shoutbox/shout_detail.html @ 312:88b2b9cb8c1f
Fixing #142; cut over to the django.contrib.staticfiles app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 02:56:10 +0000 |
parents | daa2916f5b34 |
children | 3cf18e6002dd |
comparison
equal
deleted
inserted
replaced
311:b1c39788e511 | 312:88b2b9cb8c1f |
---|---|
8 <td> | 8 <td> |
9 <div {% ifequal user.id shout.user.id %}class="edit" id="shout-{{ shout.id }}"{% endifequal %}>{{ shout.html|safe }}</div> | 9 <div {% ifequal user.id shout.user.id %}class="edit" id="shout-{{ shout.id }}"{% endifequal %}>{{ shout.html|safe }}</div> |
10 </div> | 10 </div> |
11 <br /> | 11 <br /> |
12 <span class="date">{{ shout.shout_date|date:"D M d Y H:i:s" }}</span><br /> | 12 <span class="date">{{ shout.shout_date|date:"D M d Y H:i:s" }}</span><br /> |
13 <a href="{% url 'shoutbox-view' shout.id %}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Permalink" title="Permalink" /></a> | 13 <a href="{% url 'shoutbox-view' shout.id %}"><img src="{{ STATIC_URL }}icons/link.png" alt="Permalink" title="Permalink" /></a> |
14 <a href="#" class="shout-flag" id="shout-flag-{{ shout.id }}"><img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" | 14 <a href="#" class="shout-flag" id="shout-flag-{{ shout.id }}"><img src="{{ STATIC_URL }}icons/flag_red.png" alt="Flag" |
15 title="Flag this shout as offensive" /></a> | 15 title="Flag this shout as offensive" /></a> |
16 {% ifequal user.id shout.user.id %} | 16 {% ifequal user.id shout.user.id %} |
17 <a href="#" class="shout-del" id="shout-del-{{ shout.id }}"><img src="{{ MEDIA_URL }}icons/cross.png" alt="Delete" title="Delete this shout" /></a> | 17 <a href="#" class="shout-del" id="shout-del-{{ shout.id }}"><img src="{{ STATIC_URL }}icons/cross.png" alt="Delete" title="Delete this shout" /></a> |
18 {% endifequal %} | 18 {% endifequal %} |
19 </td> | 19 </td> |
20 </tr> | 20 </tr> |