diff options
Diffstat (limited to 'src/onaptests/templates/reporting/reporting.html.j2')
-rw-r--r-- | src/onaptests/templates/reporting/reporting.html.j2 | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/onaptests/templates/reporting/reporting.html.j2 b/src/onaptests/templates/reporting/reporting.html.j2 new file mode 100644 index 0000000..5dafe3f --- /dev/null +++ b/src/onaptests/templates/reporting/reporting.html.j2 @@ -0,0 +1,43 @@ +{% extends "base.html.j2" %} +{% block title %}Summary{% endblock %} +{% block content %} + {{ summary('Results', "", [ + { 'title': 'Pythonsdk Tests', 'failing': (failing_steps | length), 'total': (steps | length)}, + ]) + }} + + <section class="section"> + <div class="container"> + <h1 class="title is-1"> + {{ usecase }} + </h1> + Description: {{ details }} + <br> + Components: {{ components }} + <br> + <a href="{{ log_path }}"> Logs</a> + <!-- Pythonsdk steps table --> + <div id="helms" class="table-container"> + <table class="table is-fullwidth is-striped is-hoverable"> + <thead> + <tr> + <th>Name</th> + <th>Status</th> + </tr> + </thead> + <tbody> + {% for step,value in steps.items() %} + <tr {% if value == 'FAIL' %} class="has-background-danger" {% else %} class="has-background-success-light" {% endif %}> + <td> + {{ step }} + </td> + <td> + {{ value }} + </td> + </tr> + {% endfor %} + </tbody> + </table> + </div> + </div> +{% endblock %} |