mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-10 17:25:35 +00:00
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:
parent
007751c8cb
commit
6848616ff1
1 changed files with 1 additions and 1 deletions
|
@ -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 %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue