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

Side by Side Diff: appengine/swarming/ui/res/imp/tasklist/task-list.html

Issue 2553563003: Link Swarming Tasklist and Botlist together (Closed)
Patch Set: Rebuild Created 4 years 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
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The LUCI Authors. All rights reserved. 2 Copyright 2016 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 5
6 This in an HTML Import-able file that contains the definition 6 This in an HTML Import-able file that contains the definition
7 of the following elements: 7 of the following elements:
8 8
9 <task-list> 9 <task-list>
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 <h2 hidden$="[[_signed_in]]">You must sign in to see anything useful.</h2> 69 <h2 hidden$="[[_signed_in]]">You must sign in to see anything useful.</h2>
70 70
71 <div hidden$="[[_not(_signed_in)]]"> 71 <div hidden$="[[_not(_signed_in)]]">
72 <task-list-data 72 <task-list-data
73 id="data" 73 id="data"
74 auth_headers="[[_auth_headers]]" 74 auth_headers="[[_auth_headers]]"
75 query_params="[[_query_params]]" 75 query_params="[[_query_params]]"
76 tasks="[[_items]]" 76 tasks="[[_items]]"
77 busy="{{_busy1)}}" 77 busy="{{_busy1)}}"
78 dimensions="{{_dimensions}}"
78 primary_map="{{_primary_map}}" 79 primary_map="{{_primary_map}}"
79 primary_arr="{{_primary_arr}}"> 80 primary_arr="{{_primary_arr}}">
80 </task-list-data> 81 </task-list-data>
81 82
82 <div class="horizontal layout"> 83 <div class="horizontal layout">
83 <task-filters 84 <task-filters
85 dimensions="[[_dimensions]]"
84 primary_map="[[_primary_map]]" 86 primary_map="[[_primary_map]]"
85 primary_arr="[[_primary_arr]]" 87 primary_arr="[[_primary_arr]]"
86 special_columns="[[_specialColumns]]" 88 special_columns="[[_specialColumns]]"
87 89
88 columns="{{_columns}}" 90 columns="{{_columns}}"
89 query_params="{{_query_params}}" 91 query_params="{{_query_params}}"
90 filter="{{_filter}}"> 92 filter="{{_filter}}">
91 </task-filters> 93 </task-filters>
92 </div> 94 </div>
93 95
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 return task.tagMap[col]; 445 return task.tagMap[col];
444 }, 446 },
445 447
446 _taskClass: function(task) { 448 _taskClass: function(task) {
447 return this.stateClass(this._column("state", task)); 449 return this.stateClass(this._column("state", task));
448 } 450 }
449 }); 451 });
450 })(); 452 })();
451 </script> 453 </script>
452 </dom-module> 454 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/ui/res/imp/tasklist/task-filters.html ('k') | appengine/swarming/ui/res/imp/tasklist/task-list-data.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698