{% extends 'assets/base.html' %} {% load url from future %} {% load i18n %} {% load icons %} {% load bob %} {% block content %}

{% trans 'History for' %} {{ content_type }} - {{ content_object }}

{% if show_status_button %} {% if status %} {% icon 'fugue-user-silhouette' %}{% trans "Show all changes." %} {% else %} {% icon 'fugue-user-silhouette-question' %} {% trans "Show only status changes." %} {% endif %} {% endif %}

{% for h in page_content %} {% endfor %}
{% trans "Date" %} {% trans "Author" %} {% trans "Field" %} {% trans "Before" %} {% trans "After" %}
{{ h.date|timesince_limited }} {{ h.user|default:'' }} {{ h.field_name }} {{ h.old_value }} {{ h.new_value }}
{% pagination page_content fugue_icons=1 url_query=url_query query_variable_name=query_variable_name %} {% endblock content %}