mirror of
https://github.com/postgres/pgweb.git
synced 2025-07-29 11:59:36 +00:00
11 lines
230 B
HTML
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 %}
|