From: Andrew Donnellan Date: Thu, 31 Oct 2019 06:27:20 +0000 (+1100) Subject: templates: Move download buttons outside h1 tag X-Git-Tag: v2.2.0-rc1~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0e27b1aa7fb5bea1e4c3029f959f5691412f085;p=thirdparty%2Fpatchwork.git 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 --- 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 }}