Files
Pignio/templates/delete.html

15 lines
519 B
HTML

{% extends "base.html" %}
{% block title %}🗑 Delete item{% endblock %}
{% block content %}
<form method="POST">
<input type="hidden" name="id" value="{{ item.id }}" />
<div class="uk-margin uk-grid-small" uk-grid>
<div>
<a class="uk-button uk-button-default" href="{{ url_for('view_item', iid=item.id) }}">Back</a>
</div>
<div>
<button class="uk-input uk-button uk-button-danger" type="submit">Delete {{ item.id }}</button>
</div>
</div>
</form>
{% endblock %}