From c266440147b38f67b53ef14e2beb734772f51b0a Mon Sep 17 00:00:00 2001 From: xando Date: Mon, 7 Jul 2014 11:43:32 +0200 Subject: indentations fix --- .../templates/testrunner/jenkins_build_view.html | 138 ++++++++++----------- 1 file changed, 68 insertions(+), 70 deletions(-) (limited to 'testmanager') diff --git a/testmanager/testrunner/templates/testrunner/jenkins_build_view.html b/testmanager/testrunner/templates/testrunner/jenkins_build_view.html index d266cbf..8ad26a2 100644 --- a/testmanager/testrunner/templates/testrunner/jenkins_build_view.html +++ b/testmanager/testrunner/templates/testrunner/jenkins_build_view.html @@ -2,86 +2,84 @@ {% block maincontent %} - {% if jenkins_build %} -
-
-
- {% for build in jenkins_build %} +
+ +
+ {% for build in jenkins_build %} {% for subbuild in build.jenkinsbuild_set.all %} -
- - - - - - - - - - - - - - - - - - - - -
Build nameBuild statusBuild numberDate
{{ subbuild.name }}{{ subbuild.status.name }}{{ subbuild.number }}{{ subbuild.timestamp }}
-
- -
+
+ + + + + + + + + + + + + + + + + + + + +
Build nameBuild statusBuild numberDate
{{ subbuild.name }}{{ subbuild.status.name }}{{ subbuild.number }}{{ subbuild.timestamp }}
+
+ +
{% for lavajob in subbuild.lavajob_set.all %} -
+
- - - - - - - - - - - {% for testdef, testresult in lavajob.get_definitions_results %} - - - - - - - - {% endfor %} - + + + + + + + + + + + {% for testdef, testresult in lavajob.get_definitions_results %} + + + + + + + + {% endfor %} +
Test nameTest statusPassFailCompare
{{ testdef.name }}{% if testresult %} OK {% else %} Missing {% endif %}{{ testresult.get_resultset_count_by_status.pass }}{{ testresult.get_resultset_count_by_status.fail }} - {% if testresult %} - - {% endif %} -
Test nameTest statusPassFailCompare
{{ testdef.name }}{% if testresult %} OK {% else %} Missing {% endif %}{{ testresult.get_resultset_count_by_status.pass }}{{ testresult.get_resultset_count_by_status.fail }} + {% if testresult %} + + {% endif %} +
-
+
{% endfor %} -
+
{% endfor %} - {% endfor %} -
- -
- {% endif %} + {% endfor %} +
+ +
{% endblock %} -- cgit v1.2.3