{% extends 'layout/page.html' %} {% block head_title %} {% if context.id %} {{ i18n.gettext('Message') }} {{ context.id }} - {{ config.TRACKER_NAME }} {% else %} {{ i18n.gettext('New Message') }} - {{ config.TRACKER_NAME }} {% endif %} {% endblock %} {% block page_header %} {% if not (context.id or context.is_edit_ok()) %} {{ i18n.gettext('New Message') }} {% elif not context.id and context.is_edit_ok() %} {{ i18n.gettext('New Message Editing') }} {% elif context.id and not context.is_edit_ok() %} {{ i18n.gettext('Message') }}{{ context.id }} {% elif context.id and context.is_edit_ok() %} {{ i18n.gettext('Message') }}{{ context.id }} {{ i18n.gettext('editing') }} {% endif %} {% endblock %} {% block content %} {% include 'layout/permission.html' %} {% if context.is_view_ok() %}
{{ i18n.gettext('Author') }}
{{ context.author }}
{{ i18n.gettext('Recipients') }}
{{ context.recipients }}
{{ i18n.gettext('Date') }}
{{ context.date }}

Content

{{ context.content.hyperlinked }}
{% endif %} {% if context.files %} {% include 'file.index.html' %} {% endif %}
{{ context.history() }} {% endblock %}