{% extends "bazar/base.html" %} {% load i18n %} {% block bazar_content %}

{% trans "Edit" %} {% trans "Delete" %}

{% if note_instance.content %}
{% if BAZAR_MARKUP_RENDER_TEMPLATE %} {% include BAZAR_MARKUP_RENDER_TEMPLATE with content=note_instance.content %} {% else %} {{ note_instance.content|linebreaks }} {% endif %}
{% endif %} {% if note_instance.file %} {% trans "Download attachment" as download_title %}

{% include 'bazar/note/_attachment_download.html' with sendfile_enabled=ATTACHMENTS_WITH_SENDFILE entity_instance=entity_instance note_instance=note_instance title=download_title css_classes='button expand' only %}

{% endif %}

{% for tag in note_instance.tags.all %} {{ tag.name }} {% endfor %}

{% endblock %}