2021-12-31 03:19:55 +00:00
|
|
|
{% extends 'components/modal.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block modal-title %}{% trans "Delete these read dates?" %}{% endblock %}
|
2021-12-31 01:48:09 +00:00
|
|
|
|
2021-01-20 06:30:51 +00:00
|
|
|
{% block modal-body %}
|
|
|
|
{% if readthrough.progress_updates|length > 0 %}
|
2021-12-31 01:48:09 +00:00
|
|
|
{% blocktrans trimmed with count=readthrough.progress_updates|length %}
|
|
|
|
You are deleting this readthrough and its {{ count }} associated progress updates.
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% else %}
|
|
|
|
{% trans "This action cannot be un-done" %}
|
2021-01-20 06:30:51 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2021-12-31 01:48:09 +00:00
|
|
|
|
2021-01-17 18:10:59 +00:00
|
|
|
{% 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">
|
2021-02-28 02:48:10 +00:00
|
|
|
{% trans "Delete" %}
|
2021-01-17 18:10:59 +00:00
|
|
|
</button>
|
2021-12-31 01:48:09 +00:00
|
|
|
<button type="button" class="button" data-modal-close>{% trans "Cancel" %}</button>
|
2021-01-17 18:10:59 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|