From a0e27b1aa7fb5bea1e4c3029f959f5691412f085 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Thu, 31 Oct 2019 17:27:20 +1100 Subject: [PATCH] templates: Move download buttons outside h1 tag It's not valid to put a
inside an

. Move the download buttons in the submission template outside the

tag. Signed-off-by: Andrew Donnellan Signed-off-by: Daniel Axtens --- patchwork/templates/patchwork/submission.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/patchwork/templates/patchwork/submission.html b/patchwork/templates/patchwork/submission.html index b5b55dbd..b3849789 100644 --- a/patchwork/templates/patchwork/submission.html +++ b/patchwork/templates/patchwork/submission.html @@ -27,9 +27,10 @@ function toggle_div(link_id, headers_id) } -

{{ submission.name }} -{% include "patchwork/partials/download-buttons.html" %} -

+
+ {% include "patchwork/partials/download-buttons.html" %} +

{{ submission.name }}

+
@@ -273,11 +274,10 @@ function toggle_div(link_id, headers_id) {% endfor %} {% if submission.diff %} -

- Patch - {% include "patchwork/partials/download-buttons.html" %} -

- +
+ {% include "patchwork/partials/download-buttons.html" %} +

Patch

+
 {{ submission|patchsyntax }}
-- 
2.47.3