mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-16 15:17:43 +00:00
12 lines
271 B
HTML
12 lines
271 B
HTML
{%extends "base/page.html"%}
|
|
{%block title%}Quotes{%endblock%}
|
|
{%block contents%}
|
|
<h1>Quotes</h1>
|
|
<dl>
|
|
{% for obj in quotes %}
|
|
<dt>{{obj.quote|safe}}</dt>
|
|
<dd class="quote_source">{{obj.who}}, <a href="{{obj.link}}">{{obj.org}}</a></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
{%endblock%}
|