{% extends 'layout.html' %} {% load i18n %} {% load utilities %} {% block title %} {% if draft.status_type == "Review" %} {% trans "Edit review" %} {% elif draft.status_type == "Quotation" %} {% trans "Edit quote" %} {% elif draft.status_type == "Comment" %} {% trans "Edit comment" %} {% else %} {% trans "Edit status" %} {% endif %} {% endblock %} {% block content %}

{% if draft.status_type == "Review" %} {% trans "Edit review" %} {% elif draft.status_type == "Quotation" %} {% trans "Edit quote" %} {% elif draft.status_type == "Comment" %} {% trans "Edit comment" %} {% else %} {% trans "Edit status" %} {% endif %}

{% with 0|uuid as uuid %}
{% if book %}

{% include 'snippets/book_titleby.html' with book=book %}

{% endif %}
{% 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 %} {% include 'snippets/create_status.html' %} {% else %} {% include 'snippets/create_status/status.html' with no_script=True %} {% endif %}
{% endwith %} {% endblock %}