{% extends "core/base.html" %} {% load static %} {% block title %}Archives Projets - Portfolio{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
TOUT {% for category in categories %} {{ category.name|upper }} {% endfor %}
{% if page_obj %} {% if is_paginated %}
    {% if page_obj.has_previous %}
  • {% else %}
  • {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %}
  • {{ num }}
  • {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
  • {{ num }}
  • {% endif %} {% endfor %} {% if page_obj.has_next %}
  • {% else %}
  • {% endif %}
{% endif %} {% else %}

Aucun Projet Trouvé

{% if active_category %} Aucun projet n'est disponible dans cette catégorie pour le moment. {% else %} Les archives de projets sont actuellement vides. {% endif %}

Réinitialiser
{% endif %}
{% endblock %}