{% extends 'layout/base.html' %} {% block title %} {%- trans %}Logs{% endtrans -%} {% endblock %} {% block content %}
{% trans %}Show{% endtrans %} {% for realm in realms|sort(attribute='name') %} {% endfor %}
{% if not entries %}

{% trans %}The log is empty{% endtrans %}

{% endif %} {% for group, entries in entries|groupby('logged_date', reverse=true) %}

{{ group|format_human_date(format='full')|title }}

{% for entry in entries %} {{ entry.render() | safe }} {% endfor %}
{% endfor %} {% endblock %}