summaryrefslogtreecommitdiffstats
path: root/israwhidebroken/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'israwhidebroken/templates/index.html')
-rw-r--r--israwhidebroken/templates/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/israwhidebroken/templates/index.html b/israwhidebroken/templates/index.html
index facc4db..ca9bca8 100644
--- a/israwhidebroken/templates/index.html
+++ b/israwhidebroken/templates/index.html
@@ -12,12 +12,12 @@
</head>
<body>
- <ol>
- <li py:for="test in tests">
- <a href="${test.uri}">${test.name}</a>: NONE
- <a py:if="in_qa" href="#in_qa">change result</a>
- </li>
- </ol>
+ <table id="results">
+ <tr py:for="test in tests" py:with="result='noresult'"> <!--! pass, fail -->
+ <td class="${result}"><a href="${test.uri}">${test.name}</a></td>
+ <td class="${result}">${result}<a py:if="in_qa" href="#in_qa">change result</a></td>
+ </tr>
+ </table>
<div py:if="admin"><a href="#admin">delete this tree</a></div>
</body>
</html>