summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2021-01-29 10:27:46 +0000
committerRyan Harkin <ryan.harkin@linaro.org>2021-01-29 10:32:51 +0000
commitdc4dd2e8182e94ccbabaf96b84ba2db53ed7eea5 (patch)
treedf7b027633aebbf774c8804daa891eecb14b90fe
parentdacab3c2116ee4d0f0ba00cf5b580de7a0224d49 (diff)
build_report_template.html: add Linaro logo and title for 5.4
We'll have to hack the title for 4.19. Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
-rw-r--r--examples/build_report_template.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/build_report_template.html b/examples/build_report_template.html
index 2e57a50..3f6a374 100644
--- a/examples/build_report_template.html
+++ b/examples/build_report_template.html
@@ -1,4 +1,5 @@
{% set base_url = [server, '%s/%s/' % (group.slug, project.slug)]|join %}
+{% set project_slug = ['%s' % (project.slug)]|join %}
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
@@ -55,7 +56,13 @@
<div id="introduction">{{ intro }}</div>
{% endif %}
<div id="build">
- <h2>Details for <a href="{{ base_url + 'build/' + build.version + '/' }}">build {{ build.version }}</a></h2>
+ <table width=100%>
+ <tr>
+ <td><h1>Schneider Electric Test Report</h1></td>
+ <td align=right><img src="https://www.linaro.org/assets/images/Linaro-Logo.svg" width=240></td>
+ </tr>
+ </table>
+ <h2>2020.09-Dunfell.1 release with {{ project_slug }} Linux kernel</h2>
<div id="build-details">
<table class="table">
{% for key, value in build.metadata.__dict__.items() %}