moviewyrm/bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html

16 lines
454 B
HTML
Raw Normal View History

{% 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 %}
<form name="shelve" action="{% url 'reading-status' 'want' book.id %}" method="post">
2021-08-16 22:00:35 +00:00
<input type="hidden" name="reading_status" value="to-read">
2021-08-16 19:28:04 +00:00
{% csrf_token %}
{% endblock %}