{% extends 'base.html' %} {% block title %}Manajemen Pengguna{% endblock %} {% block topbar_title %}Manajemen Pengguna{% endblock %} {% block content %}
{% for u in users %} {% endfor %}
# Nama Username Email Role Status Bergabung Aksi
{{ loop.index }}
{{ u.nama[0].upper() }}
{{ u.nama }} {% if u.id == current_user.id %} Anda {% endif %}
{{ u.username }} {{ u.email }} {{ u.role.title() }} {{ 'Aktif' if u.is_active else 'Nonaktif' }} {{ u.created_at.strftime('%d %b %Y') }}
{% if u.id != current_user.id %}
{% endif %}
{% endblock %}