{% extends "allianceauth/base.html" %} {% load static %} {% load i18n %} {% block page_title %}{{ group }} {% translate "Audit Log" %}{% endblock page_title %} {% block content %}

{% include 'groupmanagement/menu.html' %}
{{ group }} - {% translate "Audit Log" %}

{% translate "Back" %}

{% if entries %}
{% for entry in entries %} {% if entry.request_type is None %} {% else %} {% endif %} {% endfor %}
{% translate "Date/Time" %} {% translate "Requestor" %} {% translate "Character" %} {% translate "Corporation" %} {% translate "Type" %} {% translate "Action" %} {% translate "Actor" %}
{{ entry.date|date:"Y-M-d, H:i" }} {{ entry.requestor }} {{ entry.req_char }} {{ entry.req_char.corporation_name }} {{ entry.type_to_str }}{% translate "Removed" %}{{ entry.action_to_str }}{{ entry.request_actor }}
{% else %}
{% translate "No entries found for this group." %}
{% endif %}
{% endblock %} {% block extra_css %} {% include 'bundles/datatables-css.html' %} {% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% include 'bundles/filterdropdown-js.html' %} {% include 'bundles/moment-js.html' with locale=True %} {% endblock %} {% block extra_script %} {% endblock %}