forked from mirrors/bookwyrm
9ffe4d340e
- unhide reading status shelves - trigger modals when moving to a read status shelf - force page refresh when using move button
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
{% extends 'snippets/reading_modals/layout.html' %}
|
|
{% load i18n %}
|
|
{% load utilities %}
|
|
|
|
{% block modal-title %}
|
|
{% blocktrans trimmed with book_title=book|book_title %}
|
|
Finish "<em>{{ book_title }}</em>"
|
|
{% endblocktrans %}
|
|
{% endblock %}
|
|
|
|
{% block modal-form-open %}
|
|
<form name="finish-reading" action="{% url 'reading-status' 'finish' book.id %}" method="post" class="submit-status">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="id" value="{{ readthrough.id }}">
|
|
<input type="hidden" name="reading_status" value="read">
|
|
<input type="hidden" name="shelf" value="{{ move_from }}">
|
|
{% endblock %}
|
|
|
|
{% block reading-dates %}
|
|
<div class="columns">
|
|
<div class="column is-half">
|
|
<div class="field">
|
|
<label class="label" for="finish_id_start_date_{{ uuid }}">
|
|
{% trans "Started reading" %}
|
|
</label>
|
|
<input type="date" name="start_date" class="input" id="finish_id_start_date_{{ uuid }}" value="{{ readthrough.start_date | date:"Y-m-d" }}">
|
|
</div>
|
|
</div>
|
|
<div class="column is-half">
|
|
<div class="field">
|
|
<label class="label" for="id_finish_date_{{ uuid }}">
|
|
{% trans "Finished reading" %}
|
|
</label>
|
|
<input type="date" name="finish_date" class="input" id="id_finish_date_{{ uuid }}" value="{% now "Y-m-d" %}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block form %}
|
|
{% include "snippets/reading_modals/form.html" with optional=True type="finish_modal" %}
|
|
{% endblock %}
|