forked from mirrors/bookwyrm
13 lines
559 B
HTML
13 lines
559 B
HTML
{% extends 'snippets/components/modal.html' %}
|
|
{% block modal-title %}Delete these read dates?{% endblock %}
|
|
|
|
{% block modal-footer %}
|
|
<form name="delete-readthrough-{{ readthrough.id }}" action="/delete-readthrough" method="POST">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="id" value="{{ readthrough.id }}">
|
|
<button class="button is-danger" type="submit">
|
|
Delete
|
|
</button>
|
|
{% include 'snippets/toggle/toggle_button.html' with text="Cancel" controls_text="delete-readthrough" controls_uid=readthrough.id %}
|
|
</form>
|
|
{% endblock %}
|