{% extends 'base.html' %} {% load static %} {% block title %}{{ project.title }} - Réalisations ECOLUX BTP{% endblock %} {% block content %} {% include "ecolux_styles.html" %} {% include "nav.html" %}
{% if project.main_image %} {{ project.title }} {% else %} {{ project.title }} {% endif %}
Accueil / Réalisations {% if project.category %} / {% if project.category.get_absolute_url %} {{ project.category.name }} {% else %} {{ project.category.name }} {% endif %} {% endif %} / {{ project.title }}
{{ project.get_status_display }} {% if project.category %} {{ project.category.name }} {% endif %}

{{ project.title }}

{{ project.location }}
{% if project.completed_date %}
{{ project.completed_date|date:"F Y" }}
{% endif %}
{{ project.views_count }} vue{{ project.views_count|pluralize }}
{% if project.surface_built %}
{{ project.surface_built }} m²
Surface construite
{% endif %} {% if project.surface_land %}
{{ project.surface_land }} m²
Surface terrain
{% endif %} {% if project.floors_count %}
{{ project.floors_count }}
Niveaux
{% endif %} {% if project.rooms_count %}
{{ project.rooms_count }}
Pièces
{% endif %} {% if project.duration_months %}
{{ project.duration_months }} mois
Durée des travaux
{% endif %} {% if project.budget_formatted %}
{{ project.budget_formatted }} FCFA
Budget
{% endif %}

À propos de ce projet

{{ project.description|safe }}
{% if project_images %} {% endif %} {% if project_videos %}

Vidéos du projet

{% for video in project_videos %}
{% if video.video_type == 'UPLOAD' and video.video_file %} {% elif video.get_embed_url %}
{% endif %} {% if video.title %}

{{ video.title }}

{% if video.description %}

{{ video.description }}

{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% if related_projects %} {% endif %} {% include "partials/footer.html" %} {% endblock %}