{% extends "bee_django_crm/base.html" %} {% load bee_django_crm_filter %} {% load static %} {% block content %} {% include 'bee_django_crm/logo.html' %} {% include 'bee_django_crm/nav.html' %} {% include 'bee_django_crm/messages.html' %}
合同名称 | {{ contract.name }} |
合同时长 | {{ contract.get_contract_days }} |
合同金额 | {{ contract.price }} |
操作 | {% if contract.get_peruser|length == 0 %} {% if perms.bee_django_crm.change_contract %} 编辑 {% endif %} {% if perms.bee_django_crm.delete_contract %} 删除 {% endif %} {% else %} {{ contract.get_peruser|length }}人使用此合同 {% endif %} |