{% extends "base.html" %} {% block title %}Manage Users - Stego{% endblock %} {% block content %}
| Username | Role | Created | Actions |
|---|---|---|---|
| {{ user.username }} {% if user.id == current_user.id %} You {% endif %} | {% if user.is_admin %} Admin {% else %} User {% endif %} | {{ user.created_at[:10] if user.created_at else 'Unknown' }} | {% if user.id != current_user.id %} {% else %} - {% endif %} |