{% extends 'base.html' %} {% block title %}Admin Dashboard{% endblock %} {% block header %}

Admin Dashboard

{% endblock %} {% block content %}
Total User

{{ total_users if total_users is defined else '-' }}

Total Barang

{{ total_items if total_items is defined else '-' }}

Total Pinjaman

{{ total_loans if total_loans is defined else '-' }}

Aktivitas Terbaru
{% for l in loans %} {% else %} {% endfor %}
#BarangPeminjamStatusMulaiSelesai
{{ l.id }} {{ l.item.name }} {{ l.user.name }} {% include 'partials/status_badge.html' %} {{ l.start_date or '-' }} {{ l.end_date or '-' }}
Belum ada data.
{% endblock %}