]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/mirrors-delete.html
c1c1ef31728b0cdaa32e3c20b28eab04fe28a7ce
[people/jschlag/pbs.git] / src / templates / mirrors-delete.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Delete mirror %s") % mirror.hostname }}{% 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="/mirrors">{{ _("Mirrors") }}</a>
13 <span class="divider">/</span>
14 </li>
15 <li>
16 <a href="/mirror/{{ mirror.hostname }}">{{ mirror.hostname }}</a>
17 <span class="divider">/</span>
18 </li>
19 <li class="active">
20 <a href="/mirror/{{ mirror.hostname }}/delete">{{ _("Delete") }}</a>
21 </li>
22 </ul>
23
24 <div class="page-header">
25 <h2>{{ _("Delete mirror: %s") % mirror.hostname }}</h2>
26 </div>
27
28 <p>
29 {{ _("You are going to delete the mirror %s.") % mirror.hostname }}
30 </p>
31
32 <div class="btn-toolbar pull-right">
33 <a class="btn btn-danger" href="/mirror/{{ mirror.hostname }}/delete?confirmed=1">
34 {{ _("Delete %s") % mirror.hostname }}
35 </a>
36 <a class="btn" href="/mirror/{{ mirror.hostname }}">{{ _("Cancel") }}</a>
37 </div>
38
39 <br class="clear">
40 {% end block %}