1
0
Fork 0

Adds stopped date separate from finish date on readthrough

This commit is contained in:
Mouse Reeve 2022-05-26 11:33:31 -07:00
parent 1f6fbd8d29
commit 375c5a8789
5 changed files with 29 additions and 3 deletions

View file

@ -29,9 +29,9 @@ Stop Reading "<em>{{ book_title }}</em>"
<div class="column is-half">
<div class="field">
<label class="label" for="id_read_until_date_{{ uuid }}">
{% trans "Read until" %}
{% trans "Stopped reading" %}
</label>
<input type="date" name="finish_date" class="input" id="id_read_until_date_{{ uuid }}" value="{% now "Y-m-d" %}">
<input type="date" name="stopped_date" class="input" id="id_read_until_date_{{ uuid }}" value="{% now "Y-m-d" %}">
</div>
</div>
</div>