summaryrefslogtreecommitdiffstats
path: root/israwhidebroken/templates/index.html
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2009-09-14 16:40:00 -0400
committerWill Woods <wwoods@redhat.com>2009-09-14 16:40:00 -0400
commit56912ffb491c05402ac78f7fe665ad427c668a29 (patch)
tree8fcbd0b52bfb46b03e05f77c4ea1aed17c663f4b /israwhidebroken/templates/index.html
parent5c8522280a9d2be0b0ec0e41bb81428da505892d (diff)
downloadisrawhidebroken-56912ffb491c05402ac78f7fe665ad427c668a29.tar.gz
israwhidebroken-56912ffb491c05402ac78f7fe665ad427c668a29.tar.xz
israwhidebroken-56912ffb491c05402ac78f7fe665ad427c668a29.zip
pretty up layout a bit
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>