{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar-title %}{% trans "Comment Template" %} - {{ comment_template.name }}{% endblock %} {% block appbar-actions %} {% if not comment_template.is_readonly %} {% trans "Edit" %} {% endif %} {% endblock %} {% block content %} {% if comment_template.description %}
{{ comment_template.description }}
{% endif %} {% if comment_template.comment %}
{{ comment_template.comment }}
{% for workflow in comment_template.get_places_of_use %} {% if forloop.first %}

{% trans "Usage in workflows" %}

{% endif %} {% endfor %} {% else %}
{% trans "This comment template still needs to be configured." %}
{% endif %} {% endblock %}