{% extends 'vacancy/base.html' %} {% load static %} {% load humanize %} {% block head_title %}駐車場一覧:{{ building.building_name | default_if_none:'' }}{% endblock %} {% block head %} {% endblock %} {% block header %}{% endblock %} {% block h1_title %}
{{ building.building_name | default_if_none:'' }} 駐車場一覧
{% endblock %} {% block contents %}
{% if building.garages %}
名称
月額・手数料等
その他
{% for garage in building.garages %}
{{ garage.garage_name | default_if_none:'---' }}
{% if garage.garage_status_text %}
状況: {{ garage.garage_status_text }}
{% endif %}
月額: {{ garage.garage_fee_text | default_if_none:'---' }}
{% if garage.garage_charge_text %}
手数料: {{ garage.garage_charge_text }}
{% endif %} {% if garage.garage_deposit_text %}
保証金: {{ garage.garage_deposit_text }}
{% endif %} {% if garage.certification_fee_text %}
車庫証明: {{ garage.certification_fee_text }}
{% endif %}
{% if garage.allow_no_room_text %}
{{ garage.allow_no_room_text }}
{% endif %} {% if garage.garage_size_text %}
{{ garage.garage_size_text }}
{% endif %} {% if garage.initial_cost_name1 and garage.initial_cost_text1 %}
{{ garage.initial_cost_name1 }}: {{ garage.initial_cost_text1 }}
{% endif %} {% if garage.initial_cost_name2 and garage.initial_cost_text2 %}
{{ garage.initial_cost_name2 }}: {{ garage.initial_cost_text2 }}
{% endif %} {% if garage.initial_cost_name3 and garage.initial_cost_text3 %}
{{ garage.initial_cost_name3 }}: {{ garage.initial_cost_text3 }}
{% endif %} {% if garage.comment %}
{{ garage.comment | linebreaksbr }}
{% endif %} {% if garage.note %}
{{ garage.note | linebreaksbr }}
{% endif %}
{% endfor %} {% else %}

募集中の駐車場がありません。

{% endif %}
{% endblock %} {% block footer %}{% endblock %}