{% extends "notes/list_notes.html" %} {% load servo_tags %} {% load i18n %} {% block note_buttons %}
{% endblock note_buttons %} {% block view_message %}

{% trans "From" %}: {{ note.sender }}

{% if note.order.id %}

{% trans "Service Order" %}: {{ note.order.code }}

{% endif %}

{% trans "Created" %}: {{ note.created_at|relative_date }}

{% trans "Subject" %}: {{ note.subject }}


{{ note.body|markdown }} {% for a in note.attachments.all %} {{ a }} {% endfor %}
{% trans "Create Order" %} {% trans "Delete" %} {% trans "Reply" %}
{% endblock view_message %}