{% extends 'aristotle_mdr/base.html' %} {% load aristotle_tags util_tags i18n %} {% block title %}Registration History of {{ item.name }}{% endblock %} {% block content %}

Registration History of {{ item.name }} ({{ item.item_type_name }})

{% if history %} {% for ra, states in history.items %}

Registration History for {{ ra.name }}

{% if item|can_edit:request.user %} {% endif %} {% for status in states %} {% if item|can_edit:request.user %} {% endif %} {% endfor %}
{% trans 'Date registration effective' %} {% trans 'Date registration expires' %} {% trans 'State' %} Comments
{{ status.state|state_to_text }} {{ status.changeDetails }}
{% endfor %} {% else %} {% trans 'This item has not yet been registered by any authority' %} {% endif %} {% endblock %}