equal
deleted
inserted
replaced
20 {% block header_title %} |
20 {% block header_title %} |
21 Notification about: {{ entity.subject }} |
21 Notification about: {{ entity.subject }} |
22 {% endblock %} |
22 {% endblock %} |
23 |
23 |
24 {% block body %} |
24 {% block body %} |
25 From: |
25 From: |
26 {% if not entity.from_user %} |
26 {% if not entity.from_user %} |
27 Anonymous |
27 Anonymous |
28 {% else %} |
28 {% else %} |
29 {{ entity.from_user.name }} |
29 {{ entity.from_user.name }} |
30 {% endif %} <br /> |
30 {% endif %} <br /> |
31 To: {{ entity.scope.name }} <br /> |
31 To: {{ entity.scope.name }} <br /> |
32 Sent On: {{ entity.created_on }} <br /> |
32 Sent On: {{ entity.created_on }} <br /> |
33 Subject: {{ entity.subject }} <br /> |
33 Subject: {{ entity.subject }} <br /> |
34 Message: <br/> |
34 Message: <br/> |
35 {{ entity.message }} |
35 {{ entity.message }} |
36 <p /> |
36 <p /> |
37 |
37 |
38 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity_suffix }}'" value="Delete"/> |
38 <input type="button" onclick="location.href='/{{ entity_type_url|lower }}/delete/{{ entity_suffix }}'" value="Delete"/> |
39 |
39 |
40 {% endblock %} |
40 {% endblock %} |