mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-15 21:31:26 +00:00
Fix stopped reading status model in non-javascript environment
This commit is contained in:
parent
5eb113af6b
commit
8deee2220e
3 changed files with 18 additions and 5 deletions
|
@ -6,9 +6,8 @@ from django.db import migrations
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('bookwyrm', '0134_alter_stopped_reading'),
|
("bookwyrm", "0134_alter_stopped_reading"),
|
||||||
('bookwyrm', '0141_alter_report_status'),
|
("bookwyrm", "0141_alter_report_status"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = []
|
||||||
]
|
|
||||||
|
|
14
bookwyrm/templates/reading_progress/stop.html
Normal file
14
bookwyrm/templates/reading_progress/stop.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{% extends 'layout.html' %}
|
||||||
|
{% load i18n %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{% blocktrans trimmed with book_title=book.title %}
|
||||||
|
Stop Reading "{{ book_title }}"
|
||||||
|
{% endblocktrans %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
{% include "snippets/reading_modals/stop_reading_modal.html" with book=book active=True static=True %}
|
||||||
|
|
||||||
|
{% endblock %}
|
|
@ -31,7 +31,7 @@ Stop Reading "<em>{{ book_title }}</em>"
|
||||||
<label class="label" for="id_read_until_date_{{ uuid }}">
|
<label class="label" for="id_read_until_date_{{ uuid }}">
|
||||||
{% trans "Read until" %}
|
{% trans "Read until" %}
|
||||||
</label>
|
</label>
|
||||||
<input type="date" name="read_until_date" class="input" id="id_read_until_date_{{ uuid }}" value="{% now "Y-m-d" %}">
|
<input type="date" name="finish_date" class="input" id="id_read_until_date_{{ uuid }}" value="{% now "Y-m-d" %}">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue