diff --git a/app/static/css/tartiflette.css b/app/static/css/tartiflette.css index 1b3d7e5..2b43b6e 100644 --- a/app/static/css/tartiflette.css +++ b/app/static/css/tartiflette.css @@ -36,6 +36,7 @@ th.ci-app-test-title > div > span border:none; } +td.ci-app-level { width: 48px; } td.ci-app-test-result { text-align:center; padding: 14px 8px 8px 8px; } td.ci-app-test-result > div { position:relative; background-color: #bdc3c7; border-radius:5px; width: 18px; height: 18px;} td.ci-app-test-result > div.success { background-color: rgb(46,204,83); } diff --git a/app/templates/appci_branch.html b/app/templates/appci_branch.html index 7a9c0c0..df1930d 100644 --- a/app/templates/appci_branch.html +++ b/app/templates/appci_branch.html @@ -49,7 +49,7 @@ -
Level
+
Quality level
{% for test in tests %}
{{ test }}
{% endfor %} @@ -73,7 +73,14 @@ -
{{ result.level if result.level >= 0 else "?" }}
+
+ {{ result.level if result.level >= 0 else "?" }} + {% if result.level < result.app.public_level %} + + {% elif result.level > result.app.public_level %} + + {% endif %} +
{% for test in tests %} {% set r = result.results[test] %}