]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/builder-pass.html
Second import.
[people/jschlag/pbs.git] / data / templates / builder-pass.html
1 {% extends "base.html" %}
2
3 {% block body %}
4 <ul class="breadcrumb">
5 <li>
6 <a href="/">{{ _("Home") }}</a>
7 <span class="divider">/</span>
8 </li>
9 <li>
10 <a href="/builders">{{ _("Builders") }}</a>
11 <span class="divider">/</span>
12 </li>
13 <li>
14 <a href="/builder/{{ escape(builder.name) }}">{{ escape(builder.name) }}</a>
15 <span class="divider">/</span>
16 </li>
17 <li class="active">
18 <a href="/builder/{{ escape(builder.name) }}/edit">{{ _("Manage") }}</a>
19 </li>
20 </ul>
21
22 <div class="page-header">
23 <h1>{{ _("Builder") }}: {{ builder.name }}</h1>
24 </div>
25
26 <div class="row">
27 <div class="span6 offset3">
28 <p>
29 {% if action == "new" %}
30 {{ _("The new host <strong>%s</strong> has been successfully created.") % builder.name }}
31 {% elif action == "update" %}
32 {{ _("The passphrase for <strong>%s</strong> has been regenerated.") % builder.name }}
33 {% end %}
34
35 {{ _("For authorization to the Pakfire Master Server there is a passphrase required which must be configured to the host.") }}
36 </p>
37
38 <p>
39 {{ _("This passphrase is:") }} <strong>{{ passphrase }}</strong>
40 </p>
41
42 <p class="pull-right">
43 <a class="btn btn-primary" href="/builder/{{ builder.name }}">{{ _("Next") }}</a>
44 </p>
45 </div>
46 </div>
47 {% end block %}