{% load i18n oml_tags %}

{% trans "Moderation panel" %}

{% if ct_filter_menu %}
{% endif %} {% if page_obj.object_list %}
{% csrf_token %}
{% for item in page_obj.object_list %} {% endfor %}
{% trans "Type" %} {% trans "Object" %} {% trans "Actions" %}
{{ item.model_name }} {{ item }} {% with edit_url=item.get_admin_url %} {% if edit_url %} {% trans "Edit" %} {% endif %} {% endwith %}
{% if page_obj.paginator.num_pages > 1 %}

{% if page_obj.has_previous %} « {% endif %} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} » {% endif %}

{% endif %} {% else %}

{% trans "No pending items." %}

{% endif %}