comparison piecrust/admin/templates/publish.html @ 953:e04f2ad5f931

admin: Show flashed messages on edit and publish pages.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 05 Oct 2017 20:36:05 -0700
parents 94fd4f07da83
children 4f136b746081
comparison
equal deleted inserted replaced
952:94fd4f07da83 953:e04f2ad5f931
1 {% extends 'layouts/default.html' %} 1 {% extends 'layouts/default.html' %}
2 2
3 {% block content %} 3 {% block content %}
4 <h1>Publish {{site_title}}</h1> 4 <h1>Publish {{site_title}}</h1>
5
6 {% with messages = get_flashed_messages() %}
7 {% for message in messages %}
8 <p class="bg-info">{{message}}</p>
9 {% endfor %}
10 {% endwith %}
5 11
6 {% for target in targets %} 12 {% for target in targets %}
7 <div> 13 <div>
8 <h3>{{target.name}}</h3> 14 <h3>{{target.name}}</h3>
9 {% if target.description %}<div>{{target.description}}</div>{% endif %} 15 {% if target.description %}<div>{{target.description}}</div>{% endif %}