contentdb/app/templates/packages/delete.html

19 lines
461 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>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() }}" />
2018-12-21 15:45:54 +01:00
<input type="submit" value="Delete" class="btn-danger" />
2018-05-25 19:28:24 +02:00
</div>
</form>
{% endblock %}