{% extends "indigo.html" %} {% load i18n %} {% block title %}VAMDC{% endblock %} {% block headline %}VAMDC Dictionary Change Log{% endblock %} {% block content %}

Note that the list below only contains the changes made through the admin interface, not direct changes in the database.

{% for logentr in object_list %} {% endfor %}
When?Who?What was changed?How?
{{ logentr.action_time }} {{ logentr.user.get_full_name }} {{ logentr.content_type.name }}: {{ logentr.object_repr }} {% if logentr.is_addition %}Addition {% endif %} {% if logentr.is_deletion %}Deletion {% endif %} {{ logentr.change_message }}
{% endblock %}