{% extends "base.html" %} {% load static %} {% block title %}Projets — Portfolio Alexandre{% endblock %} {% block content %}
{% for cat in categories %} {% endfor %} {% if categories|length > 5 %} {% endif %}
{% for tech in technologies %} {% endfor %} {% if technologies|length > 5 %} {% endif %}
{% if selected_category or selected_tech %} ✕ Réinitialiser les filtres {% endif %}
{% if selected_category or selected_tech %}
{{ total_count }} résultat{{ total_count|pluralize }} {% if selected_category %}{{ selected_category }}{% endif %} {% if selected_tech %}{{ selected_tech }}{% endif %}
{% endif %}
{% for project in projects %}
{% if project.images %} {{ project.title }} {% else %}
{% endif %}
{{ project.category }}

{{ project.title }}

{{ project.short_description }}

{% for tech in project.technologies|slice:":5" %} {{ tech }} {% endfor %} {% if project.technologies|length > 5 %} +{{ project.technologies|length|add:"-5" }} {% endif %}
Voir le projet
{% empty %}
🔍

Aucun projet trouvé

Essayez de modifier vos filtres ou réinitialisez.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}