basic file upload works
[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 content %}
7 <h1>Delete paste #{{repo.id}}?</h1>
8 <div class="well" style="margin-top: 5ex;">
9  <p>
10   Do you really want to delete the folloing paste #{{repo.id}}?
11  </p>
12  <p>
13   <strong>{{repo.getDescription}}</strong>
14  </p>
15
16  <div class="row-fluid" style="margin-top: 5ex;">
17   <div class="span6">
18    <a class="btn" href="{{repo.getLink('display')}}">Cancel</a>
19   </div>
20   <div class="span6" style="text-align: right">
21    <form method="post" action="{{repo.getLink('delete-confirm')}}" style="margin: 0px">
22     <button class="btn btn-danger" type="submit">
23      <i class="icon-trash icon-white"></i>
24      Permanently delete
25     </button>
26    </form>
27   </div>
28  </div>
29 </div>
30 {% endblock %}