{% extends "erp_base.html" %} {% block head_extra %}{% endblock %} {% block content %} {% set action = '/vacation/new' if mode == 'new' else '/vacation/' ~ req.id ~ '/edit' %} 휴가 종류 * {% for t in vacation_types %} {{ t }} {% endfor %} 시작일 * 시작 구분 {% for h in halves %} {{ half_labels[h] }} {% endfor %} 종료일 * 종료 구분 {% for h in halves %} {{ half_labels[h] }} {% endfor %} 사유 {{ req.reason if req else '' }} 예상 사용 일수: — (주말 제외 · 공휴일은 저장 시 반영) 제출 작성중 저장 {% if mode == 'edit' %} 취소 {% else %} 취소 {% endif %} {% endblock %} {% block scripts %}{% endblock %}