{% extends "base.html" %} {% from "_macros.html" import icon %} {% block title %}Your settings - LLeMbas{% endblock %} {% block head %} {% endblock %} {% block body_attrs %} data-authenticated="true"{% endblock %} {% block body %}
{% include "partials/sidebar.html" %}

Your settings

{% if error %} {% endif %} {% if saved %}
{{ icon("check", "icon--sm") }} {{ saved }}
{% endif %}

Account

Name

{{ user.name }}

Email

{{ user.email }}

Role

{{ user.role }}

Default model

{% if models %}

What a new chat starts with. Existing chats keep their model.

{% else %}

No models are available to you yet.

{% endif %}

Permissions

{% if user.is_admin %} You are an administrator, so every permission applies. {% else %} What this account may do, from the instance baseline plus your groups. {% endif %}

{% for key, granted in can.items() %} {{ key }}{{ '' if granted else ' — no' }} {% endfor %}
{% if user.groups %}

Groups: {% for group in user.groups %}{{ group.name }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %}

Appearance

Moria is the dark theme, Shire the light one. Your choice is saved to this browser and to your account.

Change password

At least 8 characters.

Every other session is signed out when the password changes. You stay signed in here.

Session

{% endblock %}