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

Side by Side Diff: appengine/swarming/templates/user_task.html

Issue 2459693002: swarming: display named caches in task UI (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | appengine/swarming/ui/build/elements.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 {% for path, packages in cipd.packages %} 259 {% for path, packages in cipd.packages %}
260 <div>{{path or '.'}}/</div> 260 <div>{{path or '.'}}/</div>
261 <div class="package-list"> 261 <div class="package-list">
262 {{packages|join('<br>'|safe)}} 262 {{packages|join('<br>'|safe)}}
263 </div> 263 </div>
264 {% endfor %} 264 {% endfor %}
265 </td> 265 </td>
266 </tr> 266 </tr>
267 {% endif %} 267 {% endif %}
268 {% endif %} 268 {% endif %}
269
270 {% if request.properties.caches %}
271 <tr title="Named caches">
272 <td>Named caches</td>
273 <td>
274 {% for cache in request.properties.caches %}
275 <div>
276 <span>{{cache.name}}</span>:<span>{{cache.path}}</span>
277 </div>
278 {% endfor %}
279 </td>
280 </tr>
281 {% endif %}
282
269 {% if request.properties.inputs_ref and request.properties.inputs_ref.is olated %} 283 {% if request.properties.inputs_ref and request.properties.inputs_ref.is olated %}
270 <tr title="Inputs files"> 284 <tr title="Inputs files">
271 <td>Isolated inputs</td> 285 <td>Isolated inputs</td>
272 <td> 286 <td>
273 <a 287 <a
274 href="{{request.properties.inputs_ref.isolatedserver}}/browse?na mespace={{request.properties.inputs_ref.namespace}}&hash={{request.properties.in puts_ref.isolated}}"> 288 href="{{request.properties.inputs_ref.isolatedserver}}/browse?na mespace={{request.properties.inputs_ref.namespace}}&hash={{request.properties.in puts_ref.isolated}}">
275 {{request.properties.inputs_ref.isolated}} 289 {{request.properties.inputs_ref.isolated}}
276 </a> 290 </a>
277 </td> 291 </td>
278 </tr> 292 </tr>
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 594
581 {% set output = task.get_output() %} 595 {% set output = task.get_output() %}
582 {% if output is not none %} 596 {% if output is not none %}
583 <h3>Output:</h3> 597 <h3>Output:</h3>
584 <pre> 598 <pre>
585 {{task.get_output().decode('utf-8', 'replace')}}{% if is_running %}<p class="con sole"><span class="blink">|</span>{% endif %} 599 {{task.get_output().decode('utf-8', 'replace')}}{% if is_running %}<p class="con sole"><span class="blink">|</span>{% endif %}
586 </pre> 600 </pre>
587 {% endif %} 601 {% endif %}
588 602
589 {% endblock %} 603 {% endblock %}
OLDNEW
« 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