{% extends "gestion/base.html" %} {% load i18n %} {% get_current_language as current_language %} {% load autotranslate %} {% block titre %}{% trans "Liste des Photos" %}{% endblock %} {% block content %}

{% trans "Liste des photos" %} :

{% trans "Ajouter une photo" %}

    {% for p in photos %}
  • {{ p.name }} {% if p.cat == 'n' %}: {% trans "Non utilisée" %}
    ( {% trans "Pensez à supprimer les photos non utilisée" %}){% endif %} {% if p.cat == 'home_join' %}: {% trans "Rejoignez nous" %} {% endif %} {% if p.cat == 'home_contact' %}: {% trans "Nous Contacter" %} {% endif %} {% if p.cat == 'home_rep' %}: {% trans "Répertoire de l'acceuil" %} {% endif %} {% if p.cat == 'login' %}: {% trans "Connexion" %} {% endif %} {% if p.cat == 'change_membre' %}: {% trans "Modification du profil" %} {% endif %} {% if p.cat == 'inscription_membre' %}: {% trans "Inscription" %} {% endif %} {% if p.cat == 'home' %}: {% trans "Calendrier connecté" %} {% endif %} {% if p.cat == 'liste' %}: {% trans "Agenda public" %} {% endif %} {% if p.cat == 'part' %}: {% trans "Répertoire" %} {% endif %} {% if p.cat == 'instru' %}: {% trans "Instruments" %} {% endif %}   {% trans "Modifier" %} {% trans "Supprimer" %}

  • {% empty %}

    {% trans "Pas de photos pour le moment" %}

    {% endfor %}
{% endblock %}