{% extends 'base.html' %} {% block title %}Accueil{% endblock %} {% block content_title %} Bienvenue{% if user.is_authenticated %}, {{ user.username }}{% else %} !{% endif %} {% endblock %} {% block content %} {% if user.is_authenticated %} Hi {{ user.username }}!
{% else %}You are not logged in
Se connecter {% endif %} {% endblock %}