app/soc/templates/modules/ghop/task/update_notification.html
changeset 2824 7c73ca220dd3
equal deleted inserted replaced
2823:21c222535654 2824:7c73ca220dd3
       
     1 {% extends "soc/mail/base.html" %}
       
     2 {% comment %}
       
     3 Licensed under the Apache License, Version 2.0 (the "License");
       
     4 you may not use this file except in compliance with the License.
       
     5 You may obtain a copy of the License at
       
     6 
       
     7   http://www.apache.org/licenses/LICENSE-2.0
       
     8 
       
     9 Unless required by applicable law or agreed to in writing, software
       
    10 distributed under the License is distributed on an "AS IS" BASIS,
       
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    12 See the License for the specific language governing permissions and
       
    13 limitations under the License.
       
    14 {% endcomment %}
       
    15 {% block content %}
       
    16 
       
    17 {% if comment_entity.changes %}
       
    18   &nbsp;&nbsp;&nbsp;&nbsp;Updates: <br />
       
    19   {% for change in comment_entity.changes %}
       
    20     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{ change }}<br />
       
    21   {% endfor %}
       
    22 <br />
       
    23 {% endif %}
       
    24 
       
    25 Comment on {{ task_entity.title }}<br />
       
    26 <a href={{ redirect_url }}>{{ redirect_url }}</a><br />
       
    27 On {{ comment_entity.created_on|date:"jS F Y H:i" }}, by 
       
    28 
       
    29 {% if comment_entity.created_by %} 
       
    30   {{ comment_entity.created_by.name }}:
       
    31 {% else %}
       
    32   {{ site_name }} Automatic Updater:
       
    33 {% endif %}
       
    34 
       
    35 <br />
       
    36 
       
    37 {% if comment_entity.content %}
       
    38 {{ comment_entity.content|wordwrap:80|safe }}
       
    39 {% else %}
       
    40 (No Comment was entered for this change.)
       
    41 {% endif %}
       
    42 
       
    43 <br />
       
    44 <br />
       
    45 --<br />
       
    46 You are receiving this message because you have subscribed to updates on this
       
    47 <br/>
       
    48 
       
    49 GHOP Task. You may unsubscribe from this GHOP Task by visiting the 
       
    50 <a href={{ task_url }}>GHOP Task <br />page.</a><br />
       
    51 
       
    52 {% endblock %}