RTube

User Management

{{ users_data | length }} user{{ 's' if users_data | length != 1 else '' }} Change Password
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% if users_data %} {% for data in users_data %} {% endfor %}
Username Role Status Videos Comments Playlists Favorites Created Last Login
{{ data.user.username }} {% if data.user.username == 'admin' %} {{ data.user.role }} {% else %}
{% endif %}
{% if data.is_online %} Online {% else %} Offline {% endif %} {{ data.video_count }} {{ data.comment_count }} {{ data.playlist_count }} {{ data.favorite_count }} {{ data.user.created_at.strftime('%Y-%m-%d') }} {% if data.user.last_login %} {{ data.user.last_login.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}
{% else %}

No users found.

{% endif %}