123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- {{!
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- }}
- <div id="apps">
- <table class="table table-bordered avg-table">
- <tbody>
- <tr>
- <td></td>
- <td>Jobs</td>
- <td>Input</td>
- <td>Output</td>
- <td>Duration</td>
- <td>Oldest</td>
- <td>Most Recent</td>
- </tr>
- <tr class="avg-info">
- <td>Avg</td>
- <td>{{summary.jobs.avg}}</td>
- <td>{{summary.input.avg}}</td>
- <td>{{summary.output.avg}}</td>
- <td>{{summary.duration.avg}}</td>
- <td>{{summary.times.oldest}}</td>
- <td>{{summary.times.youngest}}</td>
- </tr>
- <tr class="compare-info">
- <td>Min / Max</td>
- <td>{{summary.jobs.min}} / {{summary.jobs.max}}</td>
- <td>{{summary.input.min}} / {{summary.input.max}}</td>
- <td>{{summary.output.min}} / {{summary.output.max}}</td>
- <td>{{summary.duration.min}} / {{summary.duration.max}}</td>
- <td></td>
- <td></td>
- </tr>
- </tbody>
- </table>
- <div class="filter_info">
- <div class="span4" id="filter_buttons">Show:
- <a class="all selected" {{action "clickViewType" target="view"}} data-view-type="all">All
- ({{controller.paginationObject.iTotalRecords}})</a> |
- <a class="filtered" {{action "clickViewType" target="view"}} data-view-type="filtered">Filtered
- ({{controller.filterObject.filteredDisplayRecords}})</a>
- </div>
- <div class="span2 clear_filter">
- <a {{action "clearFilters" target="view"}}>Clear filters</a>
- </div>
- <div class="search-bar">
- {{view view.appSearchThrough valueBinding="controller.filterObject.sSearch"}}
- </div>
- </div>
- <table class="table table-striped runsList">
- <thead>
- {{#view view.wrapSorting}}
- {{#each controller.columnsName}}
- {{#view view.parentView.sortingColumns contentBinding="this"}}
- {{name}}
- {{/view}}
- {{/each}}
- {{/view}}
- <tr>
- <th>{{view view.appIdFilterView}}</th>
- <th>{{view view.nameFilterView}}</th>
- <th>{{view view.typeFilterView}}</th>
- <th>{{view view.userFilterView}}</th>
- <th>{{view view.jobsFilterView}}</th>
- <th>{{view view.inputFilterView}}</th>
- <th>{{view view.outputFilterView}}</th>
- <th>{{view view.durationFilterView}}</th>
- <th>{{view view.runDateFilterView}}</th>
- </tr>
- </thead>
- <tbody>
- {{#each run in content}}
- {{view view.containerRow runBinding="run" currentViewBinding="view.appTableRow"}}
- {{/each}}
- </tbody>
- </table>
- <div class="page-bar">
- <div class="items-on-page">
- <label>Show: {{view view.runPerPageSelectView viewName="runPerPageSelectView" selectionBinding="controller.filterObject.iDisplayLength"}}</label>
- </div>
- <div class="info">{{controller.paginationObject.startIndex}} - {{controller.paginationObject.endIndex}} of {{controller.paginationObject.iTotalDisplayRecords}}</div>
- <div class="paging_two_button">
- {{view view.paginationLeft}}
- {{view view.paginationRight}}
- </div>
- </div>
- </div>
|