{% extends "admin/layout.html" %} {% block title %}{{ 'Edit Editor' if editor else 'New Editor' }}{% endblock %} {% block body %}
{% trans %}Back to Editors{% endtrans %}

{% if editor %}{% trans %}Edit Editor{% endtrans %}{% else %}{% trans %}New Editor{% endtrans %}{% endif %}

{% if editor %}{% trans %}Update editor credentials and assigned languages.{% endtrans %}{% else %}{% trans %}Create a new editor account with limited access to the admin panel.{% endtrans %}{% endif %}

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

{% trans %}Editor Details{% endtrans %}

{% trans %}Allowed Languages{% endtrans %}

{% trans %}The editor can only edit content in the selected languages. English is always included.{% endtrans %}

{% for lang in all_langs %} {% endfor %}
{% trans %}Cancel{% endtrans %}
{% endblock %}