123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!--
- * 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.
- -->
- <h2>Bar</h2>
- <div class="btn-group">
- <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
- Job
- <span class="caret"></span>
- </button>
- <ul class="dropdown-menu">
- {{#each job in view.content}}
- <li><a {{action "selectJob" job target="controller"}} href="javascript:void(null)">{{job.id}}</a></li>
- {{/each}}
- </ul>
- </div>
- <div>{{controller.activeJobId}}</div>
- <div id="graph1">
- <div style="float:left">
- <div id="graph1_desc" class="graph_desc">
- Job Timeline
- </div>
- <div id="chart"></div>
- <div id="timeline1"></div>
- </div>
- <div id="legend_container" style="float:left;margin-top:60px">
- <div id="legend"></div>
- </div>
- <div style="clear: both"></div>
- </div>
- <div id="graph2">
- <div style="float:left">
- <div id="graph2_desc" class="graph_desc">
- Job Tasks' View
- </div>
- <div id="job_tasks"></div>
- <div id="timeline2"></div>
- </div>
- <div id="tasks_legend_container" style="float:left;margin-top:60px">
- <div id="tasks_legend"></div>
- </div>
- <div style="clear: both"></div>
- </div>
|