diff --git a/apps/editors/templates/editors/includes/history.html b/apps/editors/templates/editors/includes/history.html index 48e70cdf313..bd941dd4989 100644 --- a/apps/editors/templates/editors/includes/history.html +++ b/apps/editors/templates/editors/includes/history.html @@ -7,8 +7,16 @@ {% endif %} - {{ record.created|datetime }} - {{ record.user.name }} - {{ record }} - {% if record.details %}{{ record.details.comments }}{% endif %} + + {{ record.user.name }}
+ {{ record.created|datetime }} + + + {{ record }} + {% if record.details %} +
+ {{ record.details.comments|nl2br }} +
+ {% endif %} + diff --git a/apps/editors/templates/editors/review.html b/apps/editors/templates/editors/review.html index 21cbabe13fc..e2dcd243e6a 100644 --- a/apps/editors/templates/editors/review.html +++ b/apps/editors/templates/editors/review.html @@ -45,22 +45,24 @@

{{ _('Item History') }}

{% if history %} - +
+
+
- - - - - - - + + + + + - {% for record in history %} - {% include 'editors/includes/history.html' %} - {% endfor %} + {% for record in history %} + {% include 'editors/includes/history.html' %} + {% endfor %} -
{{ _('Version/File') }}{{ _('Date') }}{{ _('Reviewer') }}{{ _('Action') }}{{ _('Comments') }}
{{ _('Version') }}{{ _('Review') }}{{ _('Comments') }}
+ + + {% else %}

{{ _('No previous review entries could be found.') }}