]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/docs/confirm-delete.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / docs / confirm-delete.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Delete %s") % file.filename }}{% end block %}
4
5 {% block container %}
6 <section class="section">
7 <div class="container">
8 <div class="columns is-centered">
9 <div class="column is-half">
10 <h1 class="title">
11 {{ _("Delete File") }}
12 </h1>
13 <h4 class="subtitle">{{ file.filename }}</h4>
14
15 <div class="block has-text-danger">
16 <form action="" method="POST">
17 {% raw xsrf_form_html() %}
18
19 <div class="field">
20 <p>
21 {{ _("Do you really want to delete %(filename)s in %(path)s?") % { "filename" : file.filename, "path" : file.path } }}
22 </p>
23 </div>
24
25 <div class="field">
26 <div class="control">
27 <button class="button is-danger is-fullwidth">
28 {{ _("Delete File") }}
29 </button>
30 </div>
31 </div>
32 </form>
33 </div>
34 </div>
35 </div>
36 </div>
37 </section>
38 {% end block %}