display fork domains
[phorkie.git] / data / templates / delete.htm
1 {% extends "base.htm" %}
2 {% block title %}
3 Confirm deletion of repository #{{repo.id}}
4 {% endblock %}
5
6 {% block meta %}
7 <meta name="robots" content="noindex"/>
8 {% endblock %}
9
10 {% block content %}
11 <h1>Delete paste #{{repo.id}}?</h1>
12 <div class="well" style="margin-top: 5ex;">
13  <p>
14   Do you really want to delete the following paste?
15  </p>
16  <p>
17   <strong>{{repo.getTitle}}</strong>
18  </p>
19
20  <div class="row-fluid" style="margin-top: 5ex;">
21   <div class="span6">
22    <a class="btn" href="{{repo.getLink('display')}}">Cancel</a>
23   </div>
24   <div class="span6">
25    <form method="post" action="{{repo.getLink('delete-confirm')}}" style="margin: 0px">
26     <button class="btn btn-danger pull-right" type="submit">
27      <i class="icon-trash icon-white"></i>
28      Permanently delete
29     </button>
30    </form>
31   </div>
32  </div>
33 </div>
34 {% endblock %}