{% extends "pybb/base.html" %} {% load pybb_tags i18n humanize %} {% block title %}{{ topic }}{% endblock %} {% block breadcrumb %} {% with object=topic %} {% include "pybb/breadcrumb.html" with extra_crumb="Moderation logs" %} {% endwith %} {% endblock %} {% block content %} {% for log in logmoderation_list %} {% endfor %}
{% trans "User" %} {% trans "Type" %} {% trans "Action" %} {% trans "Target" %} {% trans "Message" %} {% trans "IP Address" %}
{{ log.user }} {{ log.content_object }}

{{ log.content_type.name }}
{{ log.get_action_flag_display }} {% if log.target_id %} {{ log.target }} {% else %} - {% endif %} {{ log.change_message|linebreaks }} {{ log.user_ip }}
{% with _("Logs") as label %} {% include "pybb/pagination.html" %} {% endwith %} {% endblock %}