moviewyrm/bookwyrm/templates/snippets/reading_modals/progress_update_modal.html
2021-08-28 09:41:36 -07:00

15 lines
373 B
HTML

{% extends 'snippets/reading_modals/layout.html' %}
{% load i18n %}
{% block modal-title %}
{% trans "Update progress" %}
{% endblock %}
{% block modal-form-open %}
<form action="{% url 'edit-readthrough' %}" method="POST">
{% csrf_token %}
{% endblock %}
{% block reading-dates %}
{% include "snippets/progress_field.html" with progress_required=True %}
{% endblock %}