app/soc/templates/soc/notification/public.html
changeset 730 f6d9a49fa5ce
parent 726 ba3d399ec9be
child 731 3e1aafcf2671
equal deleted inserted replaced
729:7fe218e3d359 730:f6d9a49fa5ce
    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 %}