|
a/Allura/allura/templates/mail/Ticket.txt |
|
b/Allura/allura/templates/mail/Ticket.txt |
|
... |
|
... |
7 |
**Status:** {{ticket.status}}
|
7 |
**Status:** {{ticket.status}}
|
8 |
{% if ticket.labels.__len__() -%}
|
8 |
{% if ticket.labels.__len__() -%}
|
9 |
**Labels:** {% for label in ticket.labels %}{{label}} {% else %}None{% endfor %}
|
9 |
**Labels:** {% for label in ticket.labels %}{{label}} {% else %}None{% endfor %}
|
10 |
{% endif -%}
|
10 |
{% endif -%}
|
11 |
**Created:** {{ticket.created_date.strftime('%a %b %d, %Y %I:%M %p UTC')}} by {{ticket.reported_by.display_name}}
|
11 |
**Created:** {{ticket.created_date.strftime('%a %b %d, %Y %I:%M %p UTC')}} by {{ticket.reported_by.display_name}}
|
12 |
{% if ticket.mod_date != ticket.created_date -%}
|
12 |
{% if (ticket.mod_date - ticket.created_date).days >= 0 -%}
|
13 |
**Updated:** {{ticket.mod_date.strftime('%a %b %d, %Y %I:%M %p UTC')}}
|
13 |
**Last Updated:** {{ticket.mod_date.strftime('%a %b %d, %Y %I:%M %p UTC')}}
|
14 |
{% endif -%}
|
14 |
{% endif -%}
|
15 |
**Owner:** {{ticket.assigned_to_name()}}
|
15 |
**Owner:** {{ticket.assigned_to_name()}}
|
16 |
|
16 |
|
17 |
{{ticket.description}}
|
17 |
{{ticket.description}}
|