contentdb/app/templates/packages/remove.html

20 lines
572 B
HTML
Raw Normal View History

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 ">
<h3>Remove Package</h3>
2018-05-25 19:28:24 +02:00
<div class="box-body">
<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() }}" />
<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 %}