bookwyrm-mastodon/bookwyrm/templates/snippets/reading_modals/progress_update_modal.html

15 lines
378 B
HTML
Raw Normal View History

2021-08-28 12:41:36 -04:00
{% extends 'snippets/reading_modals/layout.html' %}
2021-03-20 20:18:18 -04:00
{% load i18n %}
{% block modal-title %}
{% trans "Update progress" %}
{% endblock %}
{% block modal-form-open %}
2021-09-09 11:06:36 -04:00
<form action="{% url 'edit-readthrough' %}" method="POST" class="submit-status">
2021-03-20 20:18:18 -04:00
{% endblock %}
2021-08-28 12:41:36 -04:00
{% block reading-dates %}
{% include "snippets/progress_field.html" with progress_required=True %}
2021-03-20 20:18:18 -04:00
{% endblock %}