{% extends 'inventaris/base.html' %} {% load static %} {% load currency_filters %} {% block title %}Daftar Perawatan - Inventaris HMI{% endblock %} {% block page_title %}Daftar Perawatan{% endblock %} {% block page_subtitle %}Kelola perawatan barang inventaris{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Daftar Perawatan

Kelola dan monitoring perawatan barang inventaris

{% if filter_form %}

Filter & Pencarian

Reset
{% endif %}
{% for perawatan in page_obj %}
{{ perawatan.get_jenis_perawatan_display }}

{{ perawatan.barang.nama }}

{{ perawatan.barang.kode_barang }}

{{ perawatan.tanggal_perawatan|date:"d M Y" }}
{% if perawatan.teknisi %}
{{ perawatan.teknisi }}
{% endif %}
Sebelum
{{ perawatan.kondisi_sebelum.nama }}
Sesudah
{{ perawatan.kondisi_sesudah.nama }}
Biaya Perawatan
Rp {{ perawatan.biaya|number_idr }}
{% if perawatan.deskripsi %}

{{ perawatan.deskripsi }}

{% endif %}
Lihat Barang
{% csrf_token %}
{{ perawatan.created_at|date:"d M Y" }} {% if perawatan.dokumen %} Ada Dokumen {% endif %}
{% empty %}

Belum ada perawatan

Mulai dengan menambahkan perawatan pertama untuk melacak maintenance barang inventaris

Tambah Perawatan Pertama
{% endfor %}
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} Sebelumnya {% endif %} {% if page_obj.has_next %} Selanjutnya {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}