It's not valid to put a <div> inside an <h1>. Move the download buttons in
the submission template outside the <h1> tag.
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
}
</script>
-<h1>{{ submission.name }}
-{% include "patchwork/partials/download-buttons.html" %}
-</h1>
+<div>
+ {% include "patchwork/partials/download-buttons.html" %}
+ <h1>{{ submission.name }}</h1>
+</div>
<table class="patchmeta">
<tr>
{% endfor %}
{% if submission.diff %}
-<h2>
- Patch
- {% include "patchwork/partials/download-buttons.html" %}
-</h2>
-
+<div>
+ {% include "patchwork/partials/download-buttons.html" %}
+ <h2>Patch</h2>
+</div>
<div id="patch" class="patch">
<pre class="content">
{{ submission|patchsyntax }}