diff --git a/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja b/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja
index 84b48b03..129c02af 100644
--- a/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja
+++ b/taiga/projects/history/templates/emails/includes/fields_diff-html.jinja
@@ -29,7 +29,9 @@
{% for att in values['new']%}
- {{ att.filename|linebreaksbr }}
+
+ {{ att.filename|linebreaksbr }} {% if att.description %}({{ att.description|linebreaksbr }}){% endif %}
+
{% endfor %}
{% endif %}
@@ -41,7 +43,12 @@
{% for att in values['changed'] %}
- {{ att.1.filename|linebreaksbr }}
+ {{ att.1.filename|linebreaksbr }} {% if att.1.description %}({{ att.1.description|linebreaksbr }}){% endif %}
+ {% if att.1.is_deprecated and not att.0.is_deprecated %}
+ to deprecated
+ {% elif not att.1.is_deprecated and att.0.is_deprecated %}
+ to not deprecated
+ {% endif %}
{% endfor %}
{% endif %}