Files
postgres-web/templates/admin/news/newsarticle/change_form.html
Magnus Hagander ca08e6a2da Properly include superblock in news articles
In passing, use <h4> for the header to make it a bit more clear what's
going on.
2012-06-26 13:51:35 +02:00

11 lines
230 B
HTML

{% extends "admin/change_form_pgweb.html" %}
{% block after_field_sets %}
{{block.super}}
<h4>Previous 10 posts by this organization:</h4>
<ul>
{%for p in latest %}
<li>{{p.date}}: {{p.title}}</li>
{%endfor%}
</ul>
{% endblock %}