{% extends 'ibs/layouts/base.html' %} {% block title %}IBS - Project{% endblock %} {% block content %} {% load humanize widget_tweaks %}
{% include 'ibs/partials/content_title.html' with second_bs="신규 프로젝트" title="세부 정보 관리" %}
{% with menu_order='2' %} {% include 'project/partials/head_menu.html' %} {% endwith %}
{% include 'ibs/partials/project_select.html' %}
{% csrf_token %} {{ formset.management_form }}
{% with sub_menu_order='1' %} {% include 'project/partials/second_menu.html' %} {% endwith %}
{% for form in formset %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endfor %}
등록차수 구 분 차수명
{{ form.order_number|add_class:"form-control text-right"|attr:"placeholder:등록차수" }} {{ form.order_number.errors }} {{ form.sort|add_class:"form-control select2"|attr:"data-toggle:select2" }} {{ form.sort.errors }} {{ form.order_group_name|add_class:"form-control"|attr:"placeholder:차수명" }} {{ form.order_group_name.errors }}
{% if is_paginated %} {# to_first_last :: 맨처음 / 맨끝으로 버튼 사용 여부 #} {# page_class ex:: pagination-rounded pagination-sm pagination-lg justify-content-center justify-content-end #} {% include 'partials/pagination.html' with to_first_last="ok" page_class="pagination-rounded justify-content-end" %} {% endif %}
{% if request.user.is_superuser or request.user.staffauth.project > '1' %} {% else %} {% endif %}
{% endblock %} {% block third_party_js %} {% endblock %}