{% extends 'base.html' %} {% block title %}مدیریت امین ها{% endblock %} {% block page_title %}مدیریت امین ها{% endblock %} {% block header_actions %} بازگشت {% endblock %} {% block content %}
لیست امین ها
{% if custodians %}
{% for custodian in custodians %} {% endfor %}
نام نام خانوادگی سمت شماره تماس وضعیت ثبت کننده تاریخ ثبت تایید کننده تاریخ تایید عملیات
{{ custodian.first_name }} {{ custodian.last_name }} {{ custodian.job_title }} {{ custodian.phone }} {% if custodian.status == 'pending' %} در انتظار تایید {% elif custodian.status == 'approved' %} تایید شده {% else %} رد شده {% endif %} {{ custodian.created_by.get_full_name|default:custodian.created_by.username }} {{ custodian.created_at|date:"Y/m/d H:i" }} {% if custodian.approved_by %} {{ custodian.approved_by.get_full_name|default:custodian.approved_by.username }} {% else %} - {% endif %} {% if custodian.approved_at %} {{ custodian.approved_at|date:"Y/m/d H:i" }} {% else %} - {% endif %} {% if profile.user_type == 'owner' %} {% if custodian.status == 'pending' %}
{% csrf_token %}
{% csrf_token %}
{% else %} - {% endif %} {% else %} - {% endif %}
{% else %}

هیچ امینی ثبت نشده است.

{% endif %}
{% endblock %}