moviewyrm/bookwyrm/templates/readthrough/readthrough_form.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2021-02-28 02:48:10 +00:00
{% load i18n %}
{% load utilities %}
2021-01-10 18:35:28 +00:00
{% csrf_token %}
<input type="hidden" name="id" value="{{ readthrough.id }}">
<input type="hidden" name="book" value="{{ book.id }}">
2022-01-11 17:50:04 +00:00
<input type="hidden" name="user" value="{{ request.user.id }}">
2021-01-10 18:35:28 +00:00
<div class="field">
<label class="label" tabindex="0" id="add_readthrough_focus_{{ readthrough.id }}" for="id_start_date_{{ readthrough.id }}">
2021-02-28 02:48:10 +00:00
{% trans "Started reading" %}
2021-01-10 18:35:28 +00:00
</label>
<input type="date" name="start_date" class="input" id="id_start_date_{{ readthrough.id }}" value="{{ readthrough.start_date | date:"Y-m-d" }}">
2021-01-10 18:35:28 +00:00
</div>
{# Only show progress for editing existing readthroughs #}
{% if readthrough.id and not readthrough.finish_date %}
{% join "id_progress" readthrough.id as field_id %}
<label class="label" for="{{ field_id }}">
2021-02-28 02:48:10 +00:00
{% trans "Progress" %}
2021-01-22 21:00:20 +00:00
</label>
{% include "snippets/progress_field.html" with id=field_id %}
{% endif %}
2021-01-10 18:35:28 +00:00
<div class="field">
<label class="label" for="id_finish_date_{{ readthrough.id }}">
2021-02-28 02:48:10 +00:00
{% trans "Finished reading" %}
2021-01-10 18:35:28 +00:00
</label>
<input type="date" name="finish_date" class="input" id="id_finish_date_{{ readthrough.id }}" value="{{ readthrough.finish_date | date:"Y-m-d" }}">
2021-01-10 18:35:28 +00:00
</div>