remembrance_index_OLD.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends "base.html" %}
  2. {% block flag_link %}{% url rm-index %}{% endblock %}
  3. {% block flag_img_src %}{{MEDIA_URL}}images/headers/remembrancesround440.gif{% endblock %}
  4. {% block flag_descrip %}Remembering our loved ones.{% endblock %}
  5. {% block content %}
  6. <td colspan="2" align="left" valign="top" bgcolor="white" width="560">
  7. <table width="565" border="0" cellspacing="8" cellpadding="0" height="504">
  8. <tr height="66">
  9. <td align="center" valign="top" width="565" height="66">
  10. <p>Remembrances <font color="#339999">&#149;</font> <a href="{% url rm-announcement-index %}">Death Announcements</a> <font color="#339999">&#149;</font> <a href="{% url rm-service-index %}">Memorial Services</a> <font color="#339999">&#149;</font> <a href="{% url rm-inmemoriam-index %}">In Memoriam</a><br>
  11. <br>
  12. <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>
  13. </td>
  14. </tr>
  15. </tr>
  16. <tr height="443">
  17. <td align="left" valign="top" width="565" height="443">
  18. {% if remembrances %}
  19. {% for a in remembrances %}
  20. {% load typogrify markup %}
  21. <div style="clear:both;">
  22. <p align="center" ><strong>{{a.name}}</strong></p>
  23. {% if a.military %}
  24. <img style="padding-right:10px;"width="40" height="40" align="left" alt="Flag" src="{{MEDIA_URL}}images/headers/remflag.gif">
  25. {% endif %}
  26. {% if a.photos.all %}
  27. {% load convert_tags %}
  28. {% for p in a.photos.all %}
  29. <p style="float:right; padding-left:10px; padding-bottom:10px;">{% thumbnail p.image.url "178" %}</p>
  30. {% endfor %}
  31. {% endif %}
  32. {{a.body|urlize|markdown|typogrify}}
  33. </div><hr/>
  34. {% endfor %}
  35. {% else %}
  36. <h4 align="center">There are no remembrances at this time.</h4><hr/>
  37. {% endif %}
  38. </td>
  39. </tr>
  40. </table>
  41. </td></tr>
  42. {% endblock %}