{% extends "base.html" %} {% block title %}User Management - Scripts Manager{% endblock %} {% block content %}

User Management

Manage system users and their permissions

Add New User
All Users
{% if users %}
{% for user in users %} {% endfor %}
ID Username Email User Level Last Login Actions
{{ user.id }}
{{ user.username }} {% if user.id == current_user.id %} You {% endif %}
{{ user.email or 'N/A' }} {{ user.user_level.title() }} {{ user.last_login.strftime('%Y-%m-%d %H:%M') if user.last_login else 'Never' }}
{% if user.id != current_user.id %} {% else %} {% endif %}
{% else %}

No Users Found

There are no users in the system.

Add First User
{% endif %}
{% endblock %}