Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2583)

Unified Diff: appengine/swarming/templates/user_task.html

Issue 2459693002: swarming: display named caches in task UI (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | appengine/swarming/ui/build/elements.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | appengine/swarming/ui/build/elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698