mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 11:52:27 +02:00
23 lines
583 B
HTML
23 lines
583 B
HTML
{% 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.first_name }}!
|
|
<p>
|
|
<a href="{% url 'order:index' %}">Mes commandes groupées</a>
|
|
</p>
|
|
<p>
|
|
<a href="{% url 'accounts:logout' %}">Se déconnecter</a>
|
|
</p>
|
|
{% else %}
|
|
<p>You are not logged in</p>
|
|
<a class="button is-primary" href="{% url 'accounts:login' %}">Se connecter</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|