Download this file

edit_posts.html    14 lines (10 with data), 385 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{% 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 %}
<div class="content">
{% for post in posts %}
{{c.form.display(value=post)}}
{% endfor %}
</div>
{% endblock %}