]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/builders/new.html
Drop dependency on textile
[people/jschlag/pbs.git] / data / templates / builders / new.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Create new builder") }}{% end block %}
4
5 {% block body %}
6 <ul class="breadcrumb">
7 <li>
8 <a href="/">{{ _("Home") }}</a>
9 <span class="divider">/</span>
10 </li>
11 <li>
12 <a href="/builders">{{ _("Builders") }}</a>
13 <span class="divider">/</span>
14 </li>
15 <li class="active">
16 <a href="/builder/new">{{ _("Create new builder") }}</a>
17 </li>
18 </ul>
19
20 <div class="page-header">
21 <h1>{{ _("Create a new builder") }}</h1>
22 </div>
23
24 <div class="row">
25 <div class="span6 offset3">
26 <form class="form-horizontal" method="POST" action="">
27 {% raw xsrf_form_html() %}
28 <fieldset>
29 <div class="control-group">
30 <label class="control-label" for="name">{{ _("Hostname") }}</label>
31 <div class="controls">
32 <input type="text" class="input-xlarge" id="name" name="name">
33
34 <p class="help-block">
35 {{ _("Enter the canonical hostname of the machine.") }}
36 </p>
37 </div>
38 </div>
39
40 <div class="form-actions">
41 <button type="submit" class="btn btn-primary">{{ _("Create new builder") }}</button>
42 </div>
43 </fieldset>
44 </form>
45 </div>
46 </div>
47 {% end block %}