2018-05-25 19:28:24 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Delete | {{ package.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="POST" action="" class="box box_grey ">
|
2018-12-25 16:13:30 +01:00
|
|
|
<h3>Remove Package</h3>
|
2018-05-25 19:28:24 +02:00
|
|
|
|
|
|
|
<div class="box-body">
|
2018-12-25 16:13:30 +01:00
|
|
|
<p>Deleting a package can be undone by the admin, but he'll be very annoyed!</p>
|
2018-05-25 19:28:24 +02:00
|
|
|
|
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
2018-12-25 16:13:30 +01:00
|
|
|
<input type="submit" name="delete" value="Delete" class="btn btn-danger" />
|
|
|
|
<input type="submit" name="unapprove" value="Unapprove" class="btn btn-warning" />
|
2018-05-25 19:28:24 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|