{% extends "base.html" %} {% block title %}{% if renew %}续签{% elif contract %}编辑{% else %}新建{% endif %}合同{% endblock %} {% block content %}

{% if renew %}续签{% elif contract %}编辑{% else %}新建{% endif %}合同

返回列表
{% if renew %}
续签时编号将在保存后自动生成
{% else %}
系统已自动生成编号,您也可以自行修改
{% endif %}
{% set signing_method_value = contract.signing_method if contract else (original_contract.signing_method if renew and original_contract is defined else '纸质签') %}
{% set counterparties = contract.counterparties if contract else (original_contract.counterparties if renew and original_contract is defined else []) %} {% if counterparties %} {% for cp in counterparties %}
{% endfor %} {% else %}
{% endif %}
仅支持 PDF、图片、Office 文件,单个不超过 5MB
{% if attachments %}
{% endif %}
{% endblock %}