From 63b0fc6269b38edf7234b9f151b80d81f614c0a3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 4 Aug 2015 10:11:24 +0300 Subject: Initial commit First public commit --- servo/templates/notes/view_note.html | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 servo/templates/notes/view_note.html (limited to 'servo/templates/notes/view_note.html') diff --git a/servo/templates/notes/view_note.html b/servo/templates/notes/view_note.html new file mode 100755 index 0000000..05000f6 --- /dev/null +++ b/servo/templates/notes/view_note.html @@ -0,0 +1,38 @@ +{% 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 %} +
+ +
+{% endblock view_message %} -- cgit v1.2.3