{% extends 'base.html' %} {% block title %}Pinjaman Saya{% endblock %} {% block header %}
| # | Barang | Mulai | Selesai | Status | Foto | Aksi |
|---|---|---|---|---|---|---|
| {{ l.id }} | {{ l.item.name }} | {{ l.start_date or '-' }} | {{ l.end_date or '-' }} | {% include 'partials/status_badge.html' %} | {% if l.request_photo %}Pengajuan{% else %}-{% endif %} | {% if l.borrow_photo %}Pinjam{% else %}-{% endif %} | {% if l.return_photo %}Kembali{% else %}-{% endif %} | {% if l.status == 'borrowed' %} {% else %}-{% endif %} |
| Belum ada pinjaman. | ||||||