2023-08-14 23:17:29 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ _('Delete collection "%(title)s" by %(author)s', title=collection.title, author=collection.author.username) }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="POST" action="" class="card box_grey">
|
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
|
|
<h3 class="card-header">{{ self.title() }}</h3>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>{{ _("Deleting is permanent") }}</p>
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="btn btn-secondary me-3" href="{{ collection.get_url('collections.create_edit') }}">{{ _("Cancel") }}</a>
|
2023-08-14 23:17:29 +02:00
|
|
|
<input type="submit" value="{{ _('Delete') }}" class="btn btn-danger" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|