2021-08-16 14:30:11 -04:00
|
|
|
{% extends 'snippets/reading_modals/layout.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load utilities %}
|
|
|
|
|
|
|
|
{% block modal-title %}
|
|
|
|
{% blocktrans trimmed with book_title=book|book_title %}
|
|
|
|
Want to Read "<em>{{ book_title }}</em>"
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-form-open %}
|
2021-12-29 14:31:26 -05:00
|
|
|
<form name="want-to-read-{{ uuid }}" action="{% url 'reading-status' 'want' book.id %}" method="post" {% if not refresh %}class="submit-status"{% endif %}>
|
2021-08-16 18:00:35 -04:00
|
|
|
<input type="hidden" name="reading_status" value="to-read">
|
2021-11-19 16:06:13 -05:00
|
|
|
<input type="hidden" name="shelf" value="{{ move_from }}">
|
2021-08-16 15:28:04 -04:00
|
|
|
{% csrf_token %}
|
2021-08-16 14:30:11 -04:00
|
|
|
{% endblock %}
|
2021-09-29 18:35:08 -04:00
|
|
|
|
|
|
|
{% block form %}
|
|
|
|
{% include "snippets/reading_modals/form.html" with optional=True type="want_modal" %}
|
|
|
|
{% endblock %}
|