From 7adc409cdba437c958590b8b3dad40a45a515ccd Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Wed, 12 Jul 2023 09:29:19 +0200 Subject: [PATCH] Add html title to dashboard page --- umap/templates/umap/user_dashboard.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/umap/templates/umap/user_dashboard.html b/umap/templates/umap/user_dashboard.html index d8d4df2d..1f96a3c7 100644 --- a/umap/templates/umap/user_dashboard.html +++ b/umap/templates/umap/user_dashboard.html @@ -1,9 +1,14 @@ {% extends "umap/content.html" %} {% load i18n %} + +{% block head_title %} + {{ SITE_NAME }} - {% trans "My dashboard" %} +{% endblock head_title %} + {% block maincontent %} {% trans "Search my maps" as placeholder %}
-

{% blocktrans %}My dashboard{% endblocktrans %}

+

{% trans "My dashboard" %}

{% include "umap/search_bar.html" with action=request.get_full_path placeholder=placeholder %}