Files
notifications-admin/app/templates/views/temp-history.html

38 lines
1.0 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
2019-10-18 09:47:44 +01:00
{% from "components/page-header.html" import page_header %}
{% from "components/table.html" import list_table, field %}
{% block service_page_title %}
Service and API key history
{% endblock %}
{% block maincolumn_content %}
2019-10-18 09:47:44 +01:00
{{ page_header("Service and API key history") }}
{% for day, events in days %}
<h2 class="heading-small top-gutter">
{{ events[0].time|format_date_human|title }}
</h2>
<ul class="bottom-gutter">
{% for event in events %}
<li class="history-list-item">
<div class="grid-row">
<div class="column-one-third">
<div class="history-list-user">
{{ event.user_id }}
</div>
<div class="history-list-time">
{{ event.time|format_time }}
</div>
</div>
<div class="column-two-thirds">
{{ event }}
</div>
</li>
{% endfor%}
</ul>
{% endfor %}
{% endblock %}