forked from github/plane
fix: email-template heading overview (#3525)
* fix: email-template heading * fix: typo
This commit is contained in:
parent
6f210e1f4b
commit
4fc4da7982
@ -186,7 +186,7 @@ def send_email_notification(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
summary = "updates were made to the issue by"
|
summary = "Updates were made to the issue by"
|
||||||
|
|
||||||
# Send the mail
|
# Send the mail
|
||||||
subject = f"{issue.project.identifier}-{issue.sequence_id} {issue.name}"
|
subject = f"{issue.project.identifier}-{issue.sequence_id} {issue.name}"
|
||||||
|
@ -108,14 +108,33 @@
|
|||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
{% if actors_involved > 0 %}
|
{% if actors_involved == 1 %}
|
||||||
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
|
{{summary}}
|
||||||
|
<span style="font-size: 1rem; font-weight: 700; line-height: 28px">
|
||||||
|
{{ data.0.actor_detail.first_name}}
|
||||||
|
{{data.0.actor_detail.last_name}}
|
||||||
|
</span>.
|
||||||
|
</p>
|
||||||
|
{% else %}
|
||||||
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
|
{{summary}}
|
||||||
|
<span style="font-size: 1rem; font-weight: 700; line-height: 28px">
|
||||||
|
{{ data.0.actor_detail.first_name}}
|
||||||
|
{{data.0.actor_detail.last_name }}
|
||||||
|
</span>and others.
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- {% if actors_involved == 1 %}
|
||||||
{% if data|length > 0 and comments|length == 0 %}
|
{% if data|length > 0 and comments|length == 0 %}
|
||||||
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
<span style="font-size: 1rem; font-weight: 700; line-height: 28px">
|
<span style="font-size: 1rem; font-weight: 700; line-height: 28px">
|
||||||
{{ data.0.actor_detail.first_name}}
|
{{ data.0.actor_detail.first_name}}
|
||||||
{{data.0.actor_detail.last_name }}
|
{{data.0.actor_detail.last_name }}
|
||||||
</span>
|
</span>
|
||||||
made {{data|length}} {% if data|length > 1 %}updates{% else %}update{% endif %} to the issue.
|
made {{total_updates}} {% if total_updates > 1 %}updates{% else %}update{% endif %} to the issue.
|
||||||
</p>
|
</p>
|
||||||
{% elif data|length == 0 and comments|length > 0 %}
|
{% elif data|length == 0 and comments|length > 0 %}
|
||||||
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
@ -123,7 +142,7 @@
|
|||||||
{{ comments.0.actor_detail.first_name}}
|
{{ comments.0.actor_detail.first_name}}
|
||||||
{{comments.0.actor_detail.last_name }}
|
{{comments.0.actor_detail.last_name }}
|
||||||
</span>
|
</span>
|
||||||
added {{comments|length}} new {% if comments|length > 1 %}comments{% else %}comment{% endif %}.
|
added {{total_comments}} new {% if total_comments > 1 %}comments{% else %}comment{% endif %}.
|
||||||
</p>
|
</p>
|
||||||
{% elif data|length > 0 and comments|length > 0 %}
|
{% elif data|length > 0 and comments|length > 0 %}
|
||||||
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
@ -131,14 +150,14 @@
|
|||||||
{{ data.0.actor_detail.first_name}}
|
{{ data.0.actor_detail.first_name}}
|
||||||
{{data.0.actor_detail.last_name }}
|
{{data.0.actor_detail.last_name }}
|
||||||
</span>
|
</span>
|
||||||
made {{data|length}} {% if data|length > 1 %}updates{% else %}update{% endif %} and added {{comments|length}} new {% if comments|length > 1 %}comments{% else %}comment{% endif %} on the issue.
|
made {{total_updates}} {% if total_updates > 1 %}updates{% else %}update{% endif %} and added {{total_comments}} new {% if total_comments > 1 %}comments{% else %}comment{% endif %} on the issue.
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
<p style="font-size: 1rem;color: #1f2d5c; line-height: 28px">
|
||||||
There are {{ data|length }} new updates and {{comments|length}} new comments on the issue
|
There are {{ total_updates }} new updates and {{total_comments}} new comments on the issue.
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %} -->
|
||||||
{% for update in data %} {% if update.changes.name %}
|
{% for update in data %} {% if update.changes.name %}
|
||||||
<!-- Issue title updated -->
|
<!-- Issue title updated -->
|
||||||
<p style="font-size: 1rem; line-height: 28px; color: #1f2d5c">
|
<p style="font-size: 1rem; line-height: 28px; color: #1f2d5c">
|
||||||
|
Loading…
Reference in New Issue
Block a user