diff options
Diffstat (limited to 'templates')
-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 b3ae025b..a343257e 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 %} |