]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/distro-update-edit.html
Drop dependency on textile
[people/jschlag/pbs.git] / data / templates / distro-update-edit.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Edit distribution %s") % distro.name }}{% end block %}
4
5 {% block body %}
6 <h1>
7 {% if update %}
8 {{ _("Edit update %s - %s") % (update.uuid, update.summary) }}
9 {% else %}
10 {{ _("Create new update") }}
11 {% end %}
12 <span> - {{ _("Distribution") }}: {{ distro.name }}</span>
13 </h1>
14
15 <form method="post" action="">
16 {% raw xsrf_form_html() %}
17
18 <table class="form form3">
19 <tr>
20 <td class="col1">{{ _("Builds") }}</td>
21 <td class="col2" colspan="2">
22 <select name="builds" size="5" multiple>
23 {% for build in builds %}
24 <option value="{{ build.uuid }}">{{ build.name }}</option>
25 {% end %}
26 </select>
27 </td>
28 </tr>
29 <tr>
30 <td colspan="3" class="buttons">
31 <input type="submit" value="{{ _("Create update") }}" />
32 </td>
33 </tr>
34 </table>
35 <div style="clear: both;">&nbsp;</div>
36 </form>
37 {% end block %}