comparison piecrust/admin/templates/publish.html @ 778:5e91bc0e3b4d

internal: Move admin panel code into the piecrust package.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 Jul 2016 15:02:24 +0200
parents foodtruck/templates/publish.html@40e897e2f11e
children 94fd4f07da83
comparison
equal deleted inserted replaced
777:8d633ca59bc5 778:5e91bc0e3b4d
1 {% extends 'layouts/default.html' %}
2
3 {% block content %}
4 <h1>Publish {{site_title}}</h1>
5
6 {% for target in targets %}
7 <div>
8 <h3>{{target.name}}</h3>
9 {% if target.description %}<div>{{target.description}}</div>{% endif %}
10 <form action="{{url_run}}" method="POST">
11 <input type="hidden" name="target" value="{{target.name}}" />
12 <button type="submit" class="btn btn-default">Execute</button>
13 </form>
14 </div>
15 {% endfor %}
16
17 {% endblock %}
18