blob: ff27220dea654e36d0c2642d951fa38b81846186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{% extends "base.htm" %}
{% block title %}
Confirm deletion of repository #{{repo.id}}
{% endblock %}
{% block content %}
<h1>Delete paste #{{repo.id}}?</h1>
<div class="well" style="margin-top: 5ex;">
<p>
Do you really want to delete the folloing paste #{{repo.id}}?
</p>
<p>
<strong>{{repo.getDescription}}</strong>
</p>
<div class="row-fluid" style="margin-top: 5ex;">
<div class="span6">
<a class="btn" href="{{repo.getLink('display')}}">Cancel</a>
</div>
<div class="span6" style="text-align: right">
<form method="post" action="{{repo.getLink('delete-confirm')}}" style="margin: 0px">
<button class="btn btn-danger" type="submit">
<i class="icon-trash icon-white"></i>
Permanently delete
</button>
</form>
</div>
</div>
</div>
{% endblock %}
|