feat(home): Add profile link

This commit is contained in:
Tom Hubrecht 2024-09-17 17:12:20 +02:00
parent 0272edc266
commit 590ac25b8c
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -1,3 +1,8 @@
{% extends "base.html" %}
{% load i18n %}
{% block content %}{% endblock %}
{% block content %}
{% if user.is_authenticated %}
<a class="button is-fullwidth is-size-4 is-primary has-text-dark" href="{% url 'dgsi:dgn-profile' %}">{% trans "Mon profil" %}</a>
{% endif %}
{% endblock content %}