comparison piecrust/admin/templates/edit_page.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 22c6f6a3d0a0
children d3652c62db3d
comparison
equal deleted inserted replaced
952:94fd4f07da83 953:e04f2ad5f931
1 {% set title = 'Write' %} 1 {% set title = 'Write' %}
2 2
3 {% extends 'layouts/default.html' %} 3 {% extends 'layouts/default.html' %}
4 4
5 {% block content %} 5 {% block content %}
6 {% with messages = get_flashed_messages() %}
7 {% if messages %}
8 <div>
9 {% for message in messages %}
10 <p class="bg-info">{{message}}</p>
11 {% endfor %}
12 </div>
13 {% endif %}
14 {% endwith %}
15
16
6 <form action="{{url_postback}}" method="POST" class="ft-write-form" id="ft-write-form"> 17 <form action="{{url_postback}}" method="POST" class="ft-write-form" id="ft-write-form">
7 <div class="row"> 18 <div class="row">
8 <div class="col-sm-10 col-sm-offset-1"> 19 <div class="col-sm-10 col-sm-offset-1">
9 <div class="form-group"> 20 <div class="form-group">
10 <textarea name="page_text" class="form-control" placeholder="Post contents..." rows="20">{{page_text}}</textarea> 21 <textarea name="page_text" class="form-control" placeholder="Post contents..." rows="20">{{page_text}}</textarea>