Switch to unified view

a b/forgeblog/templates/blog/edit_posts.html
1
{% extends g.theme.master %}
2
3
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
4
5
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}: Recent posts{% endblock %}
6
7
{% block content %}
8
    <div class="content">
9
      {% for post in posts %}
10
        {{c.form.display(value=post)}}
11
      {% endfor %}
12
    </div>
13
{% endblock %}