diff --git a/bookwyrm/templates/compose.html b/bookwyrm/templates/compose.html index 3a222cf6..ca0d8296 100644 --- a/bookwyrm/templates/compose.html +++ b/bookwyrm/templates/compose.html @@ -2,10 +2,10 @@ {% load i18n %} {% load utilities %} -{% block title %}{% trans "Compose status" %}{% endblock %} +{% block title %}{% trans "Edit status" %}{% endblock %} {% block content %}
-

{% trans "Compose status" %}

+

{% trans "Edit status" %}

{% with 0|uuid as uuid %} @@ -22,6 +22,10 @@
{% if draft.reply_parent %} {% include 'snippets/status/status.html' with status=draft.reply_parent no_interact=True %} + {% else %} +
+ {% include "snippets/status/header.html" with status=draft %} +
{% endif %} {% if not draft %} diff --git a/bookwyrm/templates/snippets/create_status/comment.html b/bookwyrm/templates/snippets/create_status/comment.html index 82ccdbe7..10cdf639 100644 --- a/bookwyrm/templates/snippets/create_status/comment.html +++ b/bookwyrm/templates/snippets/create_status/comment.html @@ -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 %} {% block post_content_additions %} + {% if not draft.reading_status %} {# Supplemental fields #}
{% 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 %} {% endif %}
+ {% endif %} {% endblock %} {% endwith %} diff --git a/bookwyrm/templates/snippets/create_status/layout.html b/bookwyrm/templates/snippets/create_status/layout.html index 43b4cdca..8d24fa02 100644 --- a/bookwyrm/templates/snippets/create_status/layout.html +++ b/bookwyrm/templates/snippets/create_status/layout.html @@ -33,6 +33,9 @@ reply_parent: the Status object this post will be in reply to, if applicable + {% if draft %} + + {% endif %} {% endblock %} {% include "snippets/create_status/content_warning_field.html" %}