Fixes reading status field in stop modal

The value of the reading status needs to match one of the database
options for `reading_status` in the `Comment` model
This commit is contained in:
Mouse Reeve 2022-05-26 11:09:11 -07:00
parent 007751c8cb
commit 6848616ff1

View file

@ -12,7 +12,7 @@ Stop Reading "<em>{{ book_title }}</em>"
<form name="stop-reading-{{ uuid }}" action="{% url 'reading-status' 'stop' book.id %}" method="post" {% if not refresh %}class="submit-status"{% endif %}>
{% csrf_token %}
<input type="hidden" name="id" value="{{ readthrough.id }}">
<input type="hidden" name="reading_status" value="stop">
<input type="hidden" name="reading_status" value="stopped-reading">
<input type="hidden" name="shelf" value="{{ move_from }}">
{% endblock %}