blob: 95709c39310f128b313b05f4f557d4f5ed75a65e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block title %}
Delete | {{ package.title }}
{% endblock %}
{% block content %}
<form method="POST" action="" class="box box_grey ">
<h3>Delete Package</h3>
<div class="box-body">
<p>This action can be undone by the admin, but he'll be very annoyed!</p>
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" value="Delete" class="button-danger" />
</div>
</form>
{% endblock %}
|