You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Fetched accounts{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block subtitle %}
|
|
{{ user }}
|
|
{% endblock %}
|
|
|
|
{% block main_action %}
|
|
<a class="btn btn-primary" href="{{ url_for('.fetch_create', user_email=user.email) }}">{% trans %}Add an account{% endtrans %}</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% call macros.table() %}
|
|
<tr>
|
|
<th>{% trans %}Actions{% endtrans %}</th>
|
|
<th>{% trans %}Endpoint{% endtrans %}</th>
|
|
<th>{% trans %}Username{% endtrans %}</th>
|
|
<th>{% trans %}Keep emails{% endtrans %}</th>
|
|
<th>{% trans %}Last check{% endtrans %}</th>
|
|
<th>{% trans %}Status{% endtrans %}</th>
|
|
<th>{% trans %}Created{% endtrans %}</th>
|
|
<th>{% trans %}Last edit{% endtrans %}</th>
|
|
</tr>
|
|
{% for fetch in user.fetches %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ url_for('.fetch_edit', fetch_id=fetch.id) }}" title="{% trans %}Edit{% endtrans %}"><i class="fa fa-pencil"></i></a>
|
|
<a href="{{ url_for('.fetch_delete', fetch_id=fetch.id) }}" title="{% trans %}Delete{% endtrans %}"><i class="fa fa-trash"></i></a>
|
|
</td>
|
|
<td>{{ fetch.protocol }}{{ 's' if fetch.tls else '' }}://{{ fetch.host }}:{{ fetch.port }}</td>
|
|
<td>{{ fetch.username }}</td>
|
|
<td>{% if fetch.keep %}{% trans %}yes{% endtrans %}{% else %}{% trans %}no{% endtrans %}{% endif %}</td>
|
|
<td>{{ fetch.last_check or '-' }}</td>
|
|
<td>{{ fetch.error or '-' }}</td>
|
|
<td>{{ fetch.created_at }}</td>
|
|
<td>{{ fetch.updated_at or '' }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endcall %}
|
|
{% endblock %}
|