{% extends "base_template.html" %} {% block title %}{{ _('Users') }} - {{ _('Admin') }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

{{ _('Users') }}

+ {{ _('New account') }}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %} {% endfor %} {% endwith %} {% if users %}
{% for user in users %} {% endfor %}
{{ _('Email') }} {{ _('Role') }} {{ _('Status') }} {{ _('Created') }} {{ _('Actions') }}
{{ user.email or '' }}{% if user.id == current_user.id %} {{ _('you') }}{% endif %} {% if user.role == 'admin' %}{{ _('Administrator') }} {% elif user.role == 'staff' %}{{ _('Staff') }} {% else %}{{ _('User') }}{% endif %} {% if user.active %}{{ _('Active') }} {% else %}{{ _('Inactive') }}{% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else '' }} {{ _('Edit') }}
{% else %}
{{ _('There are no accounts yet.') }} {{ _('Create the first one.') }}
{% endif %} {% endblock %}