diff options
author | Dan McGee <dan@archlinux.org> | 2011-08-17 15:11:23 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-17 15:11:23 +0200 |
commit | 61311701a51cc5b060d5baa56536805aa271f9d6 (patch) | |
tree | 4ae429b25cf2fb3155b315d87adb5ef9c91fc856 /templates/releng | |
parent | a489f355ec52dd54946bc7476615aa7cab9e384c (diff) | |
download | archweb-61311701a51cc5b060d5baa56536805aa271f9d6.tar.gz archweb-61311701a51cc5b060d5baa56536805aa271f9d6.tar.xz |
Add architecture to releng results listing
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/releng')
-rw-r--r-- | templates/releng/result_list.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/releng/result_list.html b/templates/releng/result_list.html index b3ae025..a343257 100644 --- a/templates/releng/result_list.html +++ b/templates/releng/result_list.html @@ -12,9 +12,10 @@ <table id="releng-result" class="results"> <thead> <tr> - <th>Iso</th> + <th>ISO</th> <th>Submitted By</th> <th>Date Submitted</th> + <th>Architecture</th> <th>Success</th> </tr> </thead> @@ -24,6 +25,7 @@ <td>{{ test.iso.name }}</td> <td>{{ test.user_name }}</td> <td>{{ test.created|date }}</td> + <td>{{ test.architecture }}</td> <td>{{ test.success|yesno }}</td> </tr> {% endfor %} |