{% extends "wcs/backoffice.html" %} {% load i18n %} {% block appbar-title %}{% trans "Comment Template" %} - {{ comment_template.name }}{% endblock %} {% block appbar-actions %} {% if not comment_template.is_readonly %} {% include "wcs/backoffice/includes/documentation-editor-link.html" %} {% endif %} {% endblock %} {% block body %} {% include "wcs/backoffice/includes/documentation.html" with element=comment_template object=comment_template %} {% if comment_template.comment %}
{{ comment_template.comment }}

{% trans "Usage" %}

{% else %}
{% trans "This comment template still needs to be configured." %}
{% endif %} {% endblock %} {% block sidebar-content %} {% if comment_template.is_readonly %}

{% trans "This comment template is readonly." %}

{{ view.snapshot_info_block|safe }} {% else %}

{% trans "Actions" %}

{% trans "Navigation" %}

{% endif %} {% include 'wcs/backoffice/includes/applications.html' with applications=comment_template.applications prefix='../' %} {% endblock %}