diff options
author | Dan McGee <dan@archlinux.org> | 2011-05-02 11:10:58 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-05-02 11:10:58 -0500 |
commit | 8544eb9bc36982540ce1cdcabff824a7a73fdb6e (patch) | |
tree | b8b4be01d207334065b410c96f94c0270f1dc386 | |
parent | 98d2608bf2b120a3dde1128069b4ac89a2601f86 (diff) |
Add column headers for success/failure values
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | templates/releng/result_section.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/releng/result_section.html b/templates/releng/result_section.html index 52f03339..08e46fb7 100644 --- a/templates/releng/result_section.html +++ b/templates/releng/result_section.html @@ -1,5 +1,7 @@ <tr> - <td><h3>{% if option.is_rollback %}Rollback: {% endif %}{{ option.name|title }}</h3></td> + <th>{% if option.is_rollback %}Rollback: {% endif %}{{ option.name|title }}</td> + <th>Last Success</th> + <th>Last Failure</th> </tr> {% for item in option.values %} <tr> |