Parent: [155591] (diff)

Child: [4608da] (diff)

Download this file

index.html    15 lines (11 with data), 401 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}: Recent posts{% endblock %}
{% block content %}
{% for metrics in metrics %}
{% if not loop.first %}
<hr />
{% endif %}
{{c.form.display(value=metrics)}}
{% endfor %}
{% endblock %}