12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {% extends "base.html" %}
- {% block flag_link %}{% url rm-index %}{% endblock %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/remembrancesround440.gif{% endblock %}
- {% block flag_descrip %}Remembering our loved ones.{% endblock %}
- {% block content %}
- <td colspan="2" align="left" valign="top" bgcolor="white" width="560">
- <table width="565" border="0" cellspacing="8" cellpadding="0" height="504">
- <tr height="66">
- <td align="center" valign="top" width="565" height="66">
- <p>Remembrances <font color="#339999">•</font> <a href="{% url rm-announcement-index %}">Death Announcements</a> <font color="#339999">•</font> <a href="{% url rm-service-index %}">Memorial Services</a> <font color="#339999">•</font> <a href="{% url rm-inmemoriam-index %}">In Memoriam</a><br>
- <br>
- <a href="{% url rm-remembrance-index %}"><img src="{{MEDIA_URL}}images/headers/remembrances542.gif" alt="In Memoriams" height="32" width="542" border="0"></a></p>
- </td>
- </tr>
- </tr>
- <tr height="443">
- <td align="left" valign="top" width="565" height="443">
- {% if remembrances %}
- {% for a in remembrances %}
- {% load typogrify markup %}
- <div style="clear:both;">
- <p align="center" ><strong>{{a.name}}</strong></p>
- {% if a.military %}
- <img style="padding-right:10px;"width="40" height="40" align="left" alt="Flag" src="{{MEDIA_URL}}images/headers/remflag.gif">
- {% endif %}
- {% if a.photos.all %}
- {% load convert_tags %}
- {% for p in a.photos.all %}
- <p style="float:right; padding-left:10px; padding-bottom:10px;">{% thumbnail p.image.url "178" %}</p>
- {% endfor %}
- {% endif %}
- {{a.body|urlize|markdown|typogrify}}
- </div><hr/>
- {% endfor %}
- {% else %}
- <h4 align="center">There are no remembrances at this time.</h4><hr/>
- {% endif %}
- </td>
- </tr>
- </table>
- </td></tr>
- {% endblock %}
|