{% extends "admin/base_site.html" %} {% load humanize %} {% load dash_tags %} {% load i18n %} {% block content_title %} {{ index_title|default:"Django Daisy Dashboard" }} {% endblock %} {% block content %}
{% trans "History" %} {% trans "Show all" %}
{% for history in latest_history %} {% endfor %}
{% trans "In" %} {% trans "Action" %} {% trans "At Time" %} {% trans "Admin" %}
{{ history.content_type }} {{ history.get_action_flag_display }} {{ history.action_time|naturaltime }} {{ history.user }}
{% endblock %}