{% extends "base.html" %} {% load static %} {% block title %}{{ project.title }} — {{ config.seo.site_title }}{% endblock %} {% block content %}
{{ project.category }} {% if project.context %}{{ project.context }}{% endif %} {% if project.complexity %}{{ project.complexity }}{% endif %}

{{ project.title }}

{{ project.short_description }}

{% for tech in project.technologies %} {{ tech }} {% endfor %}
{% if project.github_url or project.demo_url %} {% endif %}
{% if project.images %} {% endif %} {% if project.problem or project.solution %}
{% if project.problem %}

Problématique

{{ project.problem }}

{% endif %} {% if project.solution %}

Solution apportée

{{ project.solution }}

{% endif %}
{% endif %}

Description du projet

{{ project.full_description|linebreaks }}
{% if project.outcome %}

Résultat

🎯

{{ project.outcome }}

{% endif %}
{% if prev_project %} ← Précédent {{ prev_project.title }} {% else %}
{% endif %} Tous les projets {% if next_project %} Suivant → {{ next_project.title }} {% else %}
{% endif %}
{% endblock %}