{% extends "admin/base_site.html" %} {% load i18n admin_urls jutil_admin %} {% block breadcrumbs %} {% endblock %} {% block content %}

hello world

{% if action_list %} {% for action in action_list %} {% endfor %}
{% translate 'Date/time' %} {% translate 'User' %} {% translate 'Action' %}
{{ action.action_time|date:"SHORT_DATETIME_FORMAT" }} {{ action.user.get_username }} {{ action|format_change_message_ex }}

{% if pagination_required %} {% for i in page_range %} {% if i == action_list.paginator.ELLIPSIS %} {{ action_list.paginator.ELLIPSIS }} {% elif i == action_list.number %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% endif %} {{ action_list.paginator.count }} {% blocktranslate count counter=action_list.paginator.count %}entry{% plural %}entries{% endblocktranslate %}

{% else %}

{% translate 'This object doesn’t have a change history. It probably wasn’t added via this admin site.' %}

{% endif %}
{% endblock %}