{% extends 'ibs/layouts/base.html' %} {% block title %}IBS - Project{% endblock %} {% block content %} {% load humanize %}
{% include 'ibs/partials/content_title.html' with second_bs="신규 프로젝트" title="프로젝트 관리" %}
{% with menu_order='1' %} {% include 'project/partials/head_menu.html' %} {% endwith %}

프로젝트 목록

{% for object in object_list %} {% endfor %}
프로젝트 명 구 분 총 세대수(공급물량) 건축 규모 용도 지역 대지 면적 용적율 건폐율
{{ object }} {{ object.get_kind_display }} {% if object.num_unit %}{{ object.num_unit|intcomma|default:"" }} 세대{% endif %} {{ object.build_size|truncatechars:30 }} {{ object.area_usage|truncatechars:20 }} {% if object.buy_land_extent %} {{ object.buy_land_extent|floatformat:"2"|intcomma }} m 2{% endif %} {% if object.floor_area_ratio %} {{ object.floor_area_ratio|floatformat:"2"|intcomma }} %{% endif %} {% if object.build_to_land_ratio %} {{ object.build_to_land_ratio|floatformat:"2"|intcomma }} %{% endif %}
{% 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 %}
{% endblock %}