kadenios/shared/templates/auth/admin-accounts.html

73 lines
1.9 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1 class="title">{% trans "Liste des comptes spéciaux" %}</h1>
<hr>
<div class="notification">
<h3 class="subtitle has-text-weight-semibold">{% trans "Gestionnaires de Kadenios" %}</h3>
<div class="field is-grouped">
{% for a in admin %}
<div class="control">
<span class="tags has-addons">
<span class="tag is-primary">{{ a.full_name }}</span>
{% comment %}
<a class="tag is-danger has-text-white" href="mailto:{{ a.email }}">
<span class="icon">
<i class="fas fa-at"></i>
</span>
</a>
{% endcomment %}
</span>
</div>
{% endfor %}
</div>
</div>
<div class="notification">
<h3 class="subtitle has-text-weight-semibold">{% trans "Gestionnaires d'élections" %}</h3>
<div class="field is-grouped">
{% for m in e_manager %}
<div class="control">
<span class="tags has-addons">
<span class="tag is-primary">{{ m.full_name }}</span>
{% comment %}
<a class="tag is-danger has-text-white" href="mailto:{{ m.email }}">
<span class="icon">
<i class="fas fa-at"></i>
</span>
</a>
{% endcomment %}
</span>
</div>
{% endfor %}
</div>
</div>
{% comment %}
<div class="notification">
<h3 class="subtitle has-text-weight-semibold">{% trans "Gestionnaires de FAQs" %}</h3>
<div class="field is-grouped">
{% for m in f_manager %}
<div class="control">
<span class="tags has-addons">
<span class="tag is-primary">{{ m.full_name }}</span>
<a class="tag is-danger has-text-white" href="mailto:{{ m.email }}">
<span class="icon">
<i class="fas fa-at"></i>
</span>
</a>
</span>
</div>
{% endfor %}
</div>
</div>
{% endcomment %}
{% endblock %}