{% extends 'ibs/layouts/base.html' %} {% block title %}IBS - 계약 내역 조회{% endblock %} {% block content %} {% load static humanize mathfilters %}
{% include 'ibs/partials/content_title.html' with second_bs="분양 계약 관리" title="동호수 현황표" %}
{% with menu_order='4' %} {% include 'contract/partials/head_menu.html' %} {% endwith %}
{% include 'ibs/partials/project_select.html' %}
총세대수 {{ house_units.count|default:"-"|intcomma }} 홀딩세대 {{ is_hold.count|default:"-"|intcomma }}
청약세대 {{ is_apply.count|default:"-"|intcomma }} 계약세대 {{ is_contract.count|default:"-"|intcomma }}
합계 {{ is_apply.count|add:is_contract.count|default:"-"|intcomma }} 잔여세대 {{ house_units.count|sub:is_apply.count|sub:is_contract.count|default:"-"|intcomma }}
{% for type in types %} {{ type }}     {% endfor %}
{% include 'contract/partials/unit_number_graph.html' %}
{% endblock %} {% block third_party_js %} {% endblock %}