]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/builder-pass.html
Initial import.
[people/jschlag/pbs.git] / data / templates / builder-pass.html
1 {% extends "base.html" %}
2
3 {% block body %}
4 <h1>{{ _("Builder") }}: {{ builder.name }}</h1>
5
6 <p>
7 {% if action == "new" %}
8 {{ _("The new host <strong>%s</strong> has been successfully created.") % builder.name }}
9 {% elif action == "update" %}
10 {{ _("The passphrase for <strong>%s</strong> has been regenerated.") % builder.name }}
11 {% end %}
12
13 {{ _("For authorization to the Pakfire Master Server there is a passphrase required which must be configured to the host.") }}
14 {{ _("This passphrase is:") }}
15 </p>
16
17 <p class="focus">{{ builder.passphrase }}</p>
18
19 <p>
20 <a href="/builder/{{ builder.name }}">{{ _("Next") }}</a>
21 </p>
22 {% end block %}