{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% load markdownify %} {% block content %}
{% trans "Comment Object" %}
{% trans "Subject" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% if object.comment %}
{% trans "Comment" %}
{{ object.comment|markdownify }}
{% endif %} {% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}