Don't show progress field on status update comments

Also retitle the view
This commit is contained in:
Mouse Reeve 2021-10-15 14:43:02 -07:00
parent a9daa4670e
commit 896885bffd
2 changed files with 4 additions and 2 deletions

View file

@ -2,10 +2,10 @@
{% load i18n %} {% load i18n %}
{% load utilities %} {% load utilities %}
{% block title %}{% trans "Compose status" %}{% endblock %} {% block title %}{% trans "Edit status" %}{% endblock %}
{% block content %} {% block content %}
<header class="block content"> <header class="block content">
<h1>{% trans "Compose status" %}</h1> <h1>{% trans "Edit status" %}</h1>
</header> </header>
{% with 0|uuid as uuid %} {% with 0|uuid as uuid %}

View file

@ -15,6 +15,7 @@ uuid: a unique identifier used to make html "id" attributes unique and clarify j
{% trans "Some thoughts on the book" as placeholder %} {% trans "Some thoughts on the book" as placeholder %}
{% block post_content_additions %} {% block post_content_additions %}
{% if not draft.reading_status %}
{# Supplemental fields #} {# Supplemental fields #}
<div> <div>
{% active_shelf book as active_shelf %} {% active_shelf book as active_shelf %}
@ -68,6 +69,7 @@ uuid: a unique identifier used to make html "id" attributes unique and clarify j
{% endwith %} {% endwith %}
{% endif %} {% endif %}
</div> </div>
{% endif %}
{% endblock %} {% endblock %}
{% endwith %} {% endwith %}