{% extends 'base.html' %} {% block title %}داشبورد{% endblock %} {% block page_title %}داشبورد - {{ profile.organization.name }}{% endblock %} {% block header_actions %} {% if profile.user_type == 'employee' %} ثبت دارایی جدید ثبت امین اموال مدیریت امین ها {% elif profile.user_type == 'owner' %} ثبت دارایی سازمان ثبت امین سازمان مدیریت امین های سازمان {% endif %} {% endblock %} {% block content %}
| نام دارایی | نوع دارایی | مکان | وضعیت موجودی | امین | واحد | وضعیت | ثبت کننده | تاریخ ثبت | عملیات |
|---|---|---|---|---|---|---|---|---|---|
| {{ asset.name|default:asset.item_type.name }} | {{ asset.item_type.name }} | {{ asset.location.name }} | {{ asset.get_availability_display }} | {{ asset.custodian|default:"-" }} | {{ asset.unit|default:"-" }} | {% if asset.status == 'pending' %} در انتظار تایید {% elif asset.status == 'approved' %} تایید شده {% elif asset.status == 'rejected' %} رد شده {% elif asset.status == 'purchase_requested' %} درخواست خرید {% elif asset.status == 'purchase_approved' %} خرید تایید شد {% elif asset.status == 'purchase_received' %} دریافت شد {% else %} خرید رد شد {% endif %} | {{ asset.created_by.get_full_name|default:asset.created_by.username }} | {{ asset.created_at|date:"Y/m/d H:i" }} | جزئیات {% if profile.user_type == 'owner' and asset.status == 'pending' %} تایید/رد {% endif %} {% if asset.status == 'purchase_approved' and asset.created_by == user %} {% if profile.user_type == 'employee' or profile.user_type == 'owner' %} {% endif %} {% endif %} |
هیچ دارایی ای ثبت نشده است.
{% endif %}