2026-09-21 21:17:44 +02:00
|
|
|
{% extends 'app.html' %}
|
2026-09-04 17:33:37 +02:00
|
|
|
{% block main %}
|
2026-09-21 21:17:44 +02:00
|
|
|
<main>
|
|
|
|
|
<section class="section">
|
|
|
|
|
<h1 class="title has-text-centered">Welcome to llldap, {{ user.username }}</h1>
|
|
|
|
|
{% if can_create_domain %}
|
|
|
|
|
{% include 'partials/create_domain_form.html' %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if domains|length() > 1 %}
|
|
|
|
|
{% include 'partials/create_user_form.html' %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</section>
|
2026-09-04 17:33:37 +02:00
|
|
|
</main>
|
|
|
|
|
{% endblock %}
|