{% extends 'layout.html' %} {% load i18n %} {% load utilities %} {% block title %}{% trans "Edit status" %}{% endblock %} {% block content %}

{% trans "Edit status" %}

{% 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 %}