From a0548f2ca184475d256ae1622e683a4f6bf032e8 Mon Sep 17 00:00:00 2001 From: Matthias van de Meent Date: Thu, 20 Mar 2025 21:10:28 +0100 Subject: [PATCH] Provide a title to the profile edit screen This should solve the issues of https://github.com/postgres/pgcommitfest/issues/56, as that seems to be caused by a lack of "title" field in template parameters in https://github.com/postgres/pgcommitfest/blob/main/pgcommitfest/commitfest/templates/base.html#L17-L25 --- pgcommitfest/userprofile/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgcommitfest/userprofile/views.py b/pgcommitfest/userprofile/views.py index f33216bd..9f2e7e60 100644 --- a/pgcommitfest/userprofile/views.py +++ b/pgcommitfest/userprofile/views.py @@ -27,5 +27,6 @@ def userprofile(request): "userprofileform.html", { "form": form, + "title": "Profile", }, )