| OLD | NEW |
| 1 {% extends "swarming/base.html" %} | 1 {% extends "swarming/base.html" %} |
| 2 | 2 |
| 3 | 3 |
| 4 {% block headers %} | 4 {% block headers %} |
| 5 <style> | 5 <style> |
| 6 h1 { | 6 h1 { |
| 7 margin-top: 10px; | 7 margin-top: 10px; |
| 8 margin-bottom: 10px; | 8 margin-bottom: 10px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ({{values|map('filesizeformat')|join('; ')}}) | 98 ({{values|map('filesizeformat')|join('; ')}}) |
| 99 {% else %} | 99 {% else %} |
| 100 ({{values[0]|filesizeformat}}; {{values[1]|filesizeformat}}; {{values[2]|f
ilesizeformat}}; {{values[3]|filesizeformat}}; {{values[4]|filesizeformat}}; ...
; {{values[-5]|filesizeformat}}; {{values[-4]|filesizeformat}}; {{values[-3]|fil
esizeformat}}; {{values[-2]|filesizeformat}}; {{values[-1]|filesizeformat}}) | 100 ({{values[0]|filesizeformat}}; {{values[1]|filesizeformat}}; {{values[2]|f
ilesizeformat}}; {{values[3]|filesizeformat}}; {{values[4]|filesizeformat}}; ...
; {{values[-5]|filesizeformat}}; {{values[-4]|filesizeformat}}; {{values[-3]|fil
esizeformat}}; {{values[-2]|filesizeformat}}; {{values[-1]|filesizeformat}}) |
| 101 {% endif %} | 101 {% endif %} |
| 102 {% endif %} | 102 {% endif %} |
| 103 {% endmacro %} | 103 {% endmacro %} |
| 104 | 104 |
| 105 | 105 |
| 106 <h1>Task summary</h1> | 106 <h1>Task summary</h1> |
| 107 <a href="/user/tasks">Back to tasks list</a> | 107 <a href="/user/tasks">Back to tasks list</a> |
| 108 <br/> |
| 109 <a href="{{try_link}}">Try out the new task page UI</a> |
| 108 <p> | 110 <p> |
| 109 | 111 |
| 110 <div title="Information about the request itself that doesn't include what is be
ing run; it's about the context and description."> | 112 <div title="Information about the request itself that doesn't include what is be
ing run; it's about the context and description."> |
| 111 <h2>Request metadata</h2> | 113 <h2>Request metadata</h2> |
| 112 <table class="property_table"> | 114 <table class="property_table"> |
| 113 <tbody> | 115 <tbody> |
| 114 <tr title="Name of the task, used for display purpose only."> | 116 <tr title="Name of the task, used for display purpose only."> |
| 115 <td>Name</td> | 117 <td>Name</td> |
| 116 <td>{{request.name}}</td> | 118 <td>{{request.name}}</td> |
| 117 </tr> | 119 </tr> |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 | 580 |
| 579 {% set output = task.get_output() %} | 581 {% set output = task.get_output() %} |
| 580 {% if output is not none %} | 582 {% if output is not none %} |
| 581 <h3>Output:</h3> | 583 <h3>Output:</h3> |
| 582 <pre> | 584 <pre> |
| 583 {{task.get_output().decode('utf-8', 'replace')}}{% if is_running %}<p class="con
sole"><span class="blink">|</span>{% endif %} | 585 {{task.get_output().decode('utf-8', 'replace')}}{% if is_running %}<p class="con
sole"><span class="blink">|</span>{% endif %} |
| 584 </pre> | 586 </pre> |
| 585 {% endif %} | 587 {% endif %} |
| 586 | 588 |
| 587 {% endblock %} | 589 {% endblock %} |
| OLD | NEW |