llldap/templates/home.html

14 lines
383 B
HTML
Raw Normal View History

{% extends 'app.html' %}
{% block main %}
<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>
</main>
{% endblock %}