{% extends "construction/base.html" %} {% load static i18n humanize construction_tag %} {% block sidebar %} {% endblock %} {% block topbar %} {% endblock %} {% block page_title %}
{% if request.user.is_superuser %} {% endif %}

All Pending In Progress Complete

{% endblock page_title %} {% block content %}
{% if request.user.is_superuser %}
CREATE CONSTRUCTION
{% endif %} {% for construction in constructions %}
Card image cap
{% get_construction_type_badge type=construction.type %} {% get_construction_status_badge status=construction.status %}
{{construction.title}}
PRODUCT

{{construction.full_address}}

CONSTRUCTOR

{% if construction.constructor.all|length > 2 %} {{construction.constructor.first.name}} and others {% else %} {% for constructor in construction.constructor.all %} {{constructor.name}}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %}

BUDGET

{{construction.budget|floatformat:"-2"|intcomma|default:0}}

START DATE

{{construction.start_date}}

{% empty %}

No Constructions

{% endfor %}
{% endblock content %}