{% extends "base.html" %} {% block title %}逐鹿人才-证件合同管理系统{% endblock %} {% block content %}

合同列表

{% if current_user.can_create %} 新建合同 {% endif %}
{% for item in contracts %} {% endfor %}
合同编号 合同名称 合同类型 我方主体 对方主体 开始日期 结束日期 状态 操作
{{ item.contract.contract_number }} {{ item.contract.name }} {{ item.contract.type.name }} {{ item.contract.company_entity.name }} {% if item.contract.counterparties %} {% for cp in item.contract.counterparties %} {{ cp.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %}-{% endif %} {{ item.contract.start_date.strftime('%Y-%m-%d') }} {{ item.contract.end_date.strftime('%Y-%m-%d') }} {% if item.contract.is_active %} 有效 {% else %} 终止 {% endif %}
查看 {% if current_user.can_edit %} 编辑 {% endif %} {% if current_user.can_create and item.contract.is_active %} 续签 {% endif %} {% if item.attachments %} {% endif %}
{% endblock %}