{% extends 'admin/base.html' %} {% load static %} {% load currency_filters %} {% block title %}Detail Perawatan - {{ perawatan.barang.nama }}{% endblock %} {% block page_title %}Detail Perawatan{% endblock %} {% block content %}

Detail Perawatan

{{ perawatan.barang.nama }}

Informasi Barang

Kode Barang

{{ perawatan.barang.kode_barang }}

Detail Perawatan

Tanggal Perawatan

{{ perawatan.tanggal_perawatan|date:"d M Y" }}

Jenis Perawatan

{{ perawatan.jenis_perawatan }}

Teknisi

{% if perawatan.teknisi %} {{ perawatan.teknisi }} {% else %} - {% endif %}

{% if perawatan.biaya %}

Biaya

Rp {{ perawatan.biaya|number_idr }}

{% endif %}

Kondisi Sebelum

{{ perawatan.kondisi_sebelum.get_kondisi_display }}

Kondisi Sesudah

{{ perawatan.kondisi_sesudah.get_kondisi_display }}
{% if perawatan.deskripsi %}

Deskripsi

{{ perawatan.deskripsi }}

{% endif %} {% if perawatan.dokumen %} {% endif %}

Informasi Tambahan

Dibuat

{{ perawatan.created_at|date:"d M Y H:i" }}

{% if perawatan.created_by %}

Dibuat Oleh

{{ perawatan.created_by.nama_lengkap|default:perawatan.created_by.username }}

{% endif %} {% if perawatan.updated_at %}

Diperbarui

{{ perawatan.updated_at|date:"d M Y H:i" }}

{% endif %}
{% endblock %}