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

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

{% if BAZAR_MARKUP_RENDER_TEMPLATE %} {% include BAZAR_MARKUP_RENDER_TEMPLATE with content=note_instance.content %} {% else %} {{ note_instance.content|linebreaks }} {% endif %}

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

{% endblock %}