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

16 lines
373 B
HTML
Raw Normal View History

2021-08-28 16:41:36 +00:00
{% extends 'snippets/reading_modals/layout.html' %}
2021-03-21 00:18:18 +00:00
{% load i18n %}
{% block modal-title %}
{% trans "Update progress" %}
{% endblock %}
{% block modal-form-open %}
<form action="{% url 'edit-readthrough' %}" method="POST">
{% csrf_token %}
{% endblock %}
2021-08-28 16:41:36 +00:00
{% block reading-dates %}
{% include "snippets/progress_field.html" with progress_required=True %}
2021-03-21 00:18:18 +00:00
{% endblock %}