From 2822a49f2d193e53e89ea8405c289b522ffe6d68 Mon Sep 17 00:00:00 2001 From: Petr Vorel Date: Fri, 31 Jul 2026 08:47:59 +0200 Subject: [PATCH] templates/profile: Remove leading space before dot 9aaf31f added new line before "{% endfor %}." which renders space before dot (".") in "Maintainer of" and "Contributor to" sections. Although it was more readable correct rendered page is more important. Fixes: 9aaf31f ("templates: Use standard indentation") Signed-off-by: Petr Vorel --- patchwork/templates/patchwork/profile.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/patchwork/templates/patchwork/profile.html b/patchwork/templates/patchwork/profile.html index 3abfa45f8..9318236e1 100644 --- a/patchwork/templates/patchwork/profile.html +++ b/patchwork/templates/patchwork/profile.html @@ -10,8 +10,7 @@

Your Profile

Maintainer of {% for project in user.profile.maintainer_projects.all %} - {{ project.linkname }}{% if not forloop.last %},{% endif %} -{% endfor %}. + {{ project.linkname }}{% if not forloop.last %},{% endif %}{% endfor %}.

{% endif %} @@ -19,8 +18,7 @@

Your Profile

Contributor to {% for project in user.profile.contributor_projects.all %} - {{ project.linkname }}{% if not forloop.last %},{% endif %} -{% endfor %}. + {{ project.linkname }}{% if not forloop.last %},{% endif %}{% endfor %}.

{% endif %}