diff --git a/aleksis/apps/chronos/templates/chronos/partials/subs/comment.html b/aleksis/apps/chronos/templates/chronos/partials/subs/comment.html index 694a0ce3a430b25f295c2ed75120ef2e0ed9db84..17cb2f2b3d5a5f9a4b5e38bce2a7b7635c3934d9 100644 --- a/aleksis/apps/chronos/templates/chronos/partials/subs/comment.html +++ b/aleksis/apps/chronos/templates/chronos/partials/subs/comment.html @@ -1,5 +1,3 @@ -{% if el.title %} - <em>{{ el.title }}</em> -{% elif el.comment %} +{% if el.comment %} <em>{{ el.comment }}</em> {% endif %} diff --git a/aleksis/apps/chronos/templates/chronos/partials/subs/subject.html b/aleksis/apps/chronos/templates/chronos/partials/subs/subject.html index 033d7b745a36aa3d859ad95b79e705b9ce4cfb87..6d9f79f28736377bf193099702e1d9a08297ee8f 100644 --- a/aleksis/apps/chronos/templates/chronos/partials/subs/subject.html +++ b/aleksis/apps/chronos/templates/chronos/partials/subs/subject.html @@ -3,10 +3,9 @@ {% trans "Supervision" %} {% elif not el.amends.subject and not el.subject %} {% if el.amends.title %} - <s>{{ el.amends.title }}</s> - {% endif %} - {% if el.title %} - <s>{{ el.title }}</s> + {{ el.amends.title }} + {% elif el.title %} + {{ el.title }} {% endif %} {% elif el.cancelled %} <s>{% include "chronos/partials/subject.html" with subject=el.amends.subject %}</s>