comparison piecrust/admin/templates/publish.html @ 956:4f136b746081

admin: Fix some UI spacing on the publishing page.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 05 Oct 2017 21:34:21 -0700
parents e04f2ad5f931
children 96ea68c36a74
comparison
equal deleted inserted replaced
955:a4f1eafd1964 956:4f136b746081
10 {% endwith %} 10 {% endwith %}
11 11
12 {% for target in targets %} 12 {% for target in targets %}
13 <div> 13 <div>
14 <h3>{{target.name}}</h3> 14 <h3>{{target.name}}</h3>
15 {% if target.description %}<div>{{target.description}}</div>{% endif %} 15 {% if target.description %}<p>{{target.description}}</p>{% endif %}
16 <form action="{{url_run}}" method="POST"> 16 <form action="{{url_run}}" method="POST">
17 <input type="hidden" name="target" value="{{target.name}}" /> 17 <input type="hidden" name="target" value="{{target.name}}" />
18 <button type="submit" class="btn btn-default">Execute</button> 18 <button type="submit" class="btn btn-default">Execute</button>
19 </form> 19 </form>
20 </div> 20 </div>