2021-07-13 02:41:32 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1 class="title">{% trans "Gestion de Kadenios" %}</h1>
|
|
|
|
<hr>
|
|
|
|
|
2021-08-23 10:52:17 +02:00
|
|
|
<div class="tile is-ancestor">
|
|
|
|
<div class="tile is-parent">
|
|
|
|
<a class="tile is-child notification is-light px-0" href="{% url 'auth.create-account' %}">
|
|
|
|
<div class="subtitle has-text-centered">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fas fa-user-plus"></i>
|
|
|
|
</span>
|
|
|
|
<span class="ml-3">{% trans "Créer un nouveau compte" %}</span>
|
|
|
|
</span>
|
2021-07-13 02:41:32 +02:00
|
|
|
</div>
|
2021-08-23 10:52:17 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-07-13 02:41:32 +02:00
|
|
|
|
2021-08-23 10:52:17 +02:00
|
|
|
<div class="tile is-parent">
|
|
|
|
<a class="tile is-child notification is-light px-0" href="{% url 'auth.accounts' %}">
|
|
|
|
<div class="subtitle has-text-centered">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fas fa-stream"></i>
|
|
|
|
</span>
|
|
|
|
<span class="ml-3">{% trans "Liste des comptes" %}</span>
|
|
|
|
</span>
|
2021-07-13 02:41:32 +02:00
|
|
|
</div>
|
2021-08-23 10:52:17 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-13 02:41:32 +02:00
|
|
|
|
|
|
|
{% endblock %}
|