{% load staticfiles %} {# Load the tag library #} {% load bootstrap3 %} {# Load CSS and JavaScript #} {% bootstrap_css %} {% bootstrap_javascript %} Re2o : {% block title %}Accueil{% endblock %}
{% block sidebar %}

Link

Link

Link

{% endblock %}
{# Display django.contrib.messages as Bootstrap alerts #} {% bootstrap_messages %}
{% block content %}{% endblock %}
{% if user.is_authenticated %}
  • {{ user.name }} {{ user.surname }}
  • Pseudo : {{ user.pseudo }}
  • Chambre : {{ user.room }}
  • Connexion : {% if user.actif == True %}Active{% else %}Désactivée{% endif %}
  • Fin d'adhésion : {% if user.end_adhesion != None %}{{ user.end_adhesion }}{% else %}Non adhérent{% endif %}
  • Voir mon profil

    {% else %}

    Vous n'êtes pas authentifié

    {% endif %}

    ADS

    {# Read the documentation for more information #}