1
0
Fork 0

Change shelf Finished label

When the shelf is read the label is 'Finished', otherwise it's 'Until'.
This commit is contained in:
Thomas Versteeg 2022-02-12 11:19:00 +01:00
parent 2b27889457
commit bc89dd7041
2 changed files with 5 additions and 5 deletions

View file

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