Parent: [926253] (diff)

Child: [053468] (diff)

Download this file

index.html    16 lines (12 with data), 460 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{% 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 %}
{{c.pager.display(limit=limit, page=page, count=count)}}
{% endblock %}