{% extends "landing/base.html" %} {% load static i18n humanize base_tag management_tag landing_tag %} {% block title %}{% trans "BuildBlock |" %} {{case_study.title}}{% endblock title %} {% block content %}
{% get_case_study_status_badge status=case_study.status language=LANGUAGE_CODE %}

{{case_study.title}}

{% trans "PURCHASED PRICE" %}

{{case_study.purchase_price|filter_safe_money_read_from_db|floatformat:0|intcomma}} ({{case_study.purchase_price|filter_change_dollar_to_100_m_won|floatformat:-1}}억 원)

{% if case_study.selling_price %}
{% trans "SOLD PRICE" %}

{{case_study.selling_price|filter_safe_money_read_from_db|floatformat:0|intcomma}} ({{case_study.selling_price|filter_change_dollar_to_100_m_won|floatformat:-1}}억 원)

{% endif %}
{{case_study.content|safe}}
{{case_study.title}}
{% if case_study.map_url %}
{% endif %}
{% if videos %}

{% trans "VIDEOS" %}

{% for video in videos reversed %}
{% endfor %}
{% endif %} {% if after_photos or before_photos %}
{% if after_photos %}

{% trans "AFTER PHOTOS" %}

{% for after_photo in after_photos %} {% endfor %}
{% endif %} {% if before_photos %}

{% trans "BEFORE PHOTOS" %}

{% for before_photo in before_photos %} {% endfor %}
{% endif %}
{% endif %}
{% endblock content %} {% block modal %} {% endblock %}