| Index: appengine/swarming/templates/user_task.html
|
| diff --git a/appengine/swarming/templates/user_task.html b/appengine/swarming/templates/user_task.html
|
| index a3d1b24fa1f6bde699d129d9b78626ceca85202d..9ae118a39e8bf0edd5dd0e8bb4eca67dbde8c087 100644
|
| --- a/appengine/swarming/templates/user_task.html
|
| +++ b/appengine/swarming/templates/user_task.html
|
| @@ -266,6 +266,20 @@
|
| </tr>
|
| {% endif %}
|
| {% endif %}
|
| +
|
| + {% if request.properties.caches %}
|
| + <tr title="Named caches">
|
| + <td>Named caches</td>
|
| + <td>
|
| + {% for cache in request.properties.caches %}
|
| + <div>
|
| + <span>{{cache.name}}</span>:<span>{{cache.path}}</span>
|
| + </div>
|
| + {% endfor %}
|
| + </td>
|
| + </tr>
|
| + {% endif %}
|
| +
|
| {% if request.properties.inputs_ref and request.properties.inputs_ref.isolated %}
|
| <tr title="Inputs files">
|
| <td>Isolated inputs</td>
|
|
|