{% load i18n %} {% load yes_no %} {% load static %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% if contract_ids %}
{% endif %} {% if contract %}
{{contract.contract_name}}
Mary Magdalene
{{contract.employee_id}} {{contract.employee_id.employee_work_info.department_id}} / {{contract.employee_id.employee_work_info.job_position_id}}
{% trans "Start Date" %} {{contract.contract_start_date}}
{% trans "End Date" %} {{contract.contract_end_date}}
{% trans "Wage Type" %} {{contract.get_wage_type_display}}
{% trans "Wage" %} {{contract.wage}}
{% if contract.calculate_daily_leave_amount %} {% trans "Calculate Leave Amount" %} {{contract.calculate_daily_leave_amount|yesno|capfirst}} {% else %} {% trans "Deduction Amount For One Leave" %} {{contract.deduction_for_one_leave_amount}} {% endif %}
{% trans "Deduct From Basic Pay" %} {{contract.deduct_leave_from_basic_pay|yesno|capfirst}}
{% trans "Department" %} {{contract.department}}
{% trans "Job Position" %} {{contract.job_position}}
{% trans "Job Role" %} {{contract.job_role}}
{% trans "Shift" %} {{contract.shift}}
{% trans "Work Type" %} {{contract.work_type}}
{% trans "Filing Status" %} {{contract.filing_status}}
{% trans "Pay Frequency" %} {{contract.get_pay_frequency_display}}
{% trans "Document" %} {% if contract.contract_document %} {{ contract.contract_document.name }} {% endif %}
{% if contract.note %}
{% trans "Note" %} {{contract.note}}
{% endif %}
{% trans "Status" %} {{contract.get_contract_status_display}}
{% if dashboard != "dashboard" and perms.payroll.delete_contract or perms.payroll.change_contract %}
{% if perms.payroll.change_contract %} {% trans "Edit" %} {% endif %} {% if perms.payroll.delete_contract %} {% endif %}
{% endif %}
{% else %}
Page not found. 404.
{% trans "There have been no contracts signed." %}
{% endif %}