]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/modules/modal-build-unpush.html
Merge branch 'master' of git://git.ipfire.org/pbs
[people/jschlag/pbs.git] / src / templates / modules / modal-build-unpush.html
1 {% extends "modal-base.html" %}
2
3 {% block id %}unpush{% end block %}
4 {% block form_action %}/build/{{ build.uuid }}/manage{% end block %}
5
6 {% block title %}{{ _("Unpush %s from a repository") % build.name }}{% end block %}
7
8 {% block body %}
9 <input type="hidden" name="action" value="unpush" />
10
11 <fieldset>
12 <div class="control-group">
13 <label class="control-label">{{ _("Current repository") }}</label>
14 <div class="controls">
15 <select id="repo" name="repo" disabled>
16 <option value="{{ repo.identifier }}">
17 {{ repo.name }} - {{ repo.summary }}
18 </option>
19 </select>
20 </div>
21 </div>
22 </fieldset>
23
24 <hr>
25
26 <p>
27 {{ _("You are going to unpush this build from its repository.") }}
28 {{ _("This means that the build won't be installable from this repository anymore.") }}
29 </p>
30
31 {% if not build.state in ("obsolete", "broken") %}
32 <p>
33 {{ _("If you consider this build being obsolete or broken, please don't forget to mark it so.") }}
34 </p>
35 {% end %}
36 {% end block %}
37
38 {% block submit_text %}{{ _("Unpush") }}{% end block %}