{% extends "base.html" %} {% block title %}Users ยท LibreSignage{% endblock %} {% block content %}

Users & permissions

Admins control publishing and devices, editors manage content, and viewers have read-only CMS access.

Audit log

Add user

Fleet access
{% for group in groups %}
{% endfor %}
{% for account in users %}

{{ account.username }}

Last login: {{ account.last_login_at or "Never" }}
{% if account.id == g.user.id %} You {% endif %}
{% if account.id != g.user.id %} {% endif %}
Fleet scope
{% for group in groups %} {% set grant = permission_maps[account.id].get(group.id) %}
{% endfor %}
{% endfor %}
{% endblock %}