{% extends 'base.html' %} {% block title %}بررسی دارایی{% endblock %} {% block page_title %}بررسی دارایی{% endblock %} {% block header_actions %} بازگشت {% endblock %} {% block content %}

بررسی دارایی

نام دارایی: {{ asset.name|default:asset.item_type.name }}
نوع دارایی: {{ asset.item_type.name }}
مکان: {{ asset.location.name }}
امین اموال: {{ asset.custodian|default:"-" }}
وضعیت موجودی: {{ asset.get_availability_display }}
واحد: {{ asset.unit|default:"-" }}
ثبت کننده: {{ asset.created_by.get_full_name|default:asset.created_by.username }}
تاریخ ثبت: {{ asset.created_at|date:"Y/m/d H:i" }}
توضیحات:

{{ asset.description }}

{% if asset.status == 'pending' %}
{% csrf_token %}
{% if asset.availability == 'available' %} {% else %} {% endif %}
{% else %}
این دارایی قبلا بررسی شده است.
{% endif %}
{% endblock %}