{% extends '@mio/settings/master.twig' %} {% from '@mio/macros.twig' import pagination %} {% set alpagination = pagination(audit_log_count, audit_log_take, audit_log_offset, '?m=log', 'settings__') %} {% block settings_content %}

This is a log of all "important" actions that have been done using your account for your review. If you notice anything strange, please alert the staff.

{{ alpagination }} {% for log in audit_logs %}
Date
Action
{% if log.log_action in log_strings|keys %} {{ log_strings[log.log_action]|vsprintf(log.log_params|json_decode) }} {% else %} {{ log.log_action }}({{ log.log_params }}) {% endif %}
{% endfor %} {{ alpagination }}
{% endblock %}