{% extends "admin/layout.html" %} {% block title %}Editor Management{% endblock %} {% block body %}

{% trans %}Editor Management{% endtrans %}

{% trans %}Editors can log in to translate page content for their assigned languages. They cannot access site settings or user data.{% endtrans %}

{% trans %}Add Editor{% endtrans %}
{% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %}

{% trans %}Editors{% endtrans %} ({{ editors | length }})

{% if editors %}
{% for editor in editors %}
{{ editor.username }} {% if not editor.is_active %} {% trans %}Inactive{% endtrans %} {% else %} {% trans %}Active{% endtrans %} {% endif %}
{% for lang_code in editor.allowed_languages %} {% set lang_info = all_langs | selectattr('code', 'eq', lang_code) | first %} {{ lang_code.upper() }}{% if lang_info %} – {{ lang_info.name }}{% endif %} {% endfor %}
{% trans %}Created:{% endtrans %} {{ editor.created_at[:10] if editor.created_at else '—' }}
{% trans %}Edit{% endtrans %}
{% endfor %}
{% else %}

{% trans %}No editors yet. Add your first editor to get started.{% endtrans %}

{% trans %}Add First Editor{% endtrans %}
{% endif %}
{% endblock %}