aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2021-02-02 09:22:30 +0000
committerRyan Harkin <ryan.harkin@linaro.org>2021-02-03 16:25:07 +0000
commit595c1090f905732e2c136e3f8e3df4714fce4b41 (patch)
treeef9c4a49c523ac948583b244db80bc7f3b5adf82
parent97ff01cd1e00d486402205f9ce878bda7aca83e7 (diff)
testplan_v2 template customised for Schneider
Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
-rw-r--r--plans/templates/testplan_v2.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/plans/templates/testplan_v2.html b/plans/templates/testplan_v2.html
index bc7357a..76aed27 100644
--- a/plans/templates/testplan_v2.html
+++ b/plans/templates/testplan_v2.html
@@ -10,7 +10,7 @@
<body>
<div class="container">
<div id="metadata">
- <h1>Metadata</h1>
+ <h1>Schneider Electric Test Plan</h1>
<table class="table table-striped">
<thead>
<tr>
@@ -42,19 +42,19 @@
<h1>Tests</h1>
{% if obj.tests is defined %}
{% if obj.tests.manual is defined and obj.tests.manual is not none %}
- <h3>Manual tests</h3>
+ <h2>Manual tests</h2>
{% for test in obj.tests.manual %}
<div {% if test.missing %}class="alert alert-danger"{% endif %}>
- <h5>{{ loop.index }}</h5>
+ <h3>Manual Testcase {{ loop.index }}</h3>
{% include "_test_details.html" %}
</div>
{% endfor %}
{% endif %}
{% if obj.tests.automated is defined and obj.tests.automated is not none %}
- <h3>Automated tests</h3>
+ <h2>Automated tests</h2>
{% for test in obj.tests.automated %}
<div {% if test.missing %}class="alert alert-danger"{% endif %}>
- <h5>{{ loop.index }}</h5>
+ <h3>Automated Testcase {{ loop.index }}</h3>
{% include "_test_details.html" %}
</div>
{% endfor %}