{% load i18n ralph_tags %}
{% if transition_history_in_fieldset %}
{% trans "Transition history" %} {% endif %} {% if transitions_history %} {% for history in transitions_history %} {% endfor %}
{% trans "Date" %} {% trans "Author" %} {% trans "Transition" %} {% trans "Source" %} {% trans "Target" %} {% trans "Actions" %} {% trans "Data" %} {% trans "Attachment" %}
{{ history.created }} {{ history.logged_user }} {{ history.transition_name }} {{ history.source|default:"—" }} {{ history.target|default:"—" }} {% if history.actions %} {% for action in history.actions %} {{ action }}
{% endfor %} {% else %} — {% endif %}
{% for value in history.kwargs.items %} {{ value.0 }}: {{ value.1 }}
{% endfor %}
{% if history.attachments.all %}
    {% for attachment in history.attachments.all %}
  1. {{ attachment.original_filename }}
  2. {% endfor %}
{% else %} — {% endif %}
{% else %} {% trans "Transition history is empty" %} {% endif %} {% if transition_history_in_fieldset %}
{% endif %}