app-MAIL-temp/app/dashboard/templates/dashboard/alias_log.html
2019-12-15 18:55:14 +02:00

59 lines
1.5 KiB
HTML

{% extends 'default.html' %}
{% set active_page = "dashboard" %}
{% block title %}
Alias Activity
{% endblock %}
{% block default_content %}
<div class="page-header row">
<h3 class="page-title col">
{{ alias }}
</h3>
</div>
<div class="row row-cards row-deck mt-4">
<div class="col-12">
<div class="card">
<div class="table-responsive">
<table class="table table-hover table-outline table-vcenter text-nowrap card-table">
<thead>
<tr>
<th>Activity</th>
<th>Website Email</th>
<th></th>
<th>Alias</th>
</tr>
</thead>
<tbody>
{% for log in logs %}
<tr>
<td>{{ log.when | dt }}</td>
<td>{{ log.website_email }}</td>
<td>
{% if log.is_reply %}
<img src="{{ url_for('static', filename='arrows/reply-arrow.svg') }}" class="arrow">
{% elif log.blocked %}
<img src="{{ url_for('static', filename='arrows/blocked-arrow.svg') }}" class="arrow">
{% else %}
<img src="{{ url_for('static', filename='arrows/forward-arrow.svg') }}" class="arrow">
{% endif %}
</td>
<td>{{ log.alias }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}
{% block script %}
{% endblock %}