mirror of
https://gitlab.com/octospacc/Pignio.git
synced 2025-07-17 22:37:38 +02:00
15 lines
519 B
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 %} |