{% extends "layout.html.twig" %} {% block title %}{{ 'user.page_title'|trans }}{% endblock %} {% block content %}
{% if users.getNbPages > 1 %} {{ pagerfanta(users, 'default_wallabag') }} {% endif %}

{{ 'user.description'|trans|raw }}

{% if is_granted('LIST_USERS') %}
{% if form_errors(searchForm) %} {{ form_errors(searchForm) }} {% endif %} {% if form_errors(searchForm.term) %} {{ form_errors(searchForm.term) }} {% endif %} {{ form_widget(searchForm.term, {'attr': {'autocomplete': 'off', 'placeholder': 'user.search.placeholder'}}) }} {{ form_rest(searchForm) }}
{% endif %}
{% for user in users %} {% endfor %}
{{ 'user.form.username_label'|trans }} {{ 'user.form.email_label'|trans }} {{ 'user.form.last_login_label'|trans }} {{ 'user.list.actions'|trans }}
{{ user.username }} {{ user.email }} {% if user.lastLogin %}{{ user.lastLogin|date('Y-m-d H:i:s') }}{% endif %} {% if is_granted('EDIT', user) %} {{ 'user.list.edit_action'|trans }} {% endif %}

{% if is_granted('CREATE_USERS') %}

{{ 'user.list.create_new_one'|trans }}

{% endif %} {% if users.getNbPages > 1 %} {{ pagerfanta(users, 'default_wallabag') }} {% endif %}
{% endblock %}