{% extends "base_nav.html" %} {% load humanize %} {% load i18n %} {% load static %} {% load smart_pagination %} {% block "title" %}{% trans "Audit log" %}{% endblock %} {% block "content" %}

{% if secret %} {% blocktrans with name=secret.name %}Audit log for secret '{{ name }}'{% endblocktrans %} {% elif user %} {% blocktrans with name=user.username %}Audit log for user '{{ name }}'{% endblocktrans %} {% else %} {% trans "Audit log" %} {% endif %}



{% for entry in log_entries %} {% endfor %}
{{ entry.time|date:"Y-m-d H:i:s" }} {% if entry.secret %}{{ entry.secret.name }}{% endif %} {% if entry.actor %}{{ entry.actor.username }}{% endif %} {{ entry.message }}
{% include "pagination.html" %}
{% endblock %}