From bf85702203cc2ef7e3094715f1d863c4a40ae7b6 Mon Sep 17 00:00:00 2001 From: Dorian Lesbre <dorian.lesbre@gmail.com> Date: Mon, 29 Mar 2021 17:33:49 +0200 Subject: [PATCH] Added activity url to profile page --- accounts/templates/profile.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/accounts/templates/profile.html b/accounts/templates/profile.html index cffb6c1..3d0f3ab 100644 --- a/accounts/templates/profile.html +++ b/accounts/templates/profile.html @@ -20,14 +20,14 @@ {% endif %} <ul> <li>{% if user.profile.sleeps %}Inscrit pour dormir sur place{% else %}Ne dors pas sur place{% endif %}</li> - <!--<li>{% if user.profile.mug %}Commande une tasse{% else %}Ne commande pas de tasse{% endif %}</li>--> + <!--<li>{% if user.profile.mug %}Commandse une tasse{% else %}Ne commande pas de tasse{% endif %}</li>--> <li>Inscrit à {{ user.profile.nb_meals }} repas.</li> {% if settings.activities_allocated %} {% if my_activities %} <li>Inscrit à {{ my_activities|length }} activités : <ul> {% for activity in my_activities %} - <li>{{ activity.activity.title }} + <li><a href="{% url 'activites' %}#{{ activity.activity.slug }}">{{ activity.activity.title }}</a> {% if activity.activity.start and activity.activity.room %} (le {{ activity.activity.start|date:"l à H:i" }} en {{ activity.activity.room }}) {% endif %} @@ -43,7 +43,7 @@ <li>{{ my_activities|length }} activités souhaitées : <ol> {% for activity in my_activities %} - <li>{{ activity.activity.title }} + <li><a href="{% url 'activites' %}#{{ activity.activity.slug }}">{{ activity.activity.title }}</a> {% if activity.activity.start and activity.activity.room %} (le {{ activity.activity.start|date:"l à H:i" }} en {{ activity.activity.room }}) {% endif %} -- GitLab