bar.hbs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {{!
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. }}
  18. <div class="btn-group">
  19. <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
  20. {{t apps.dagCharts.popup.job}} {{view.activeJob.id}} - {{view.activeJob.run.id}}
  21. <span class="caret"></span>
  22. </button>
  23. <ul class="dropdown-menu">
  24. {{#each job in view.content}}
  25. <li><a {{action "selectJob" job target="view"}} href="javascript:void(null)">{{t apps.dagCharts.popup.job}} {{job.id}} - {{job.run.id}}</a></li>
  26. {{/each}}
  27. </ul>
  28. </div>
  29. <div></div>
  30. <div id="graph1" class="pull-left">
  31. <div class="pull-left">
  32. <div id="graph1_desc" class="graph_desc">
  33. <h4>{{t apps.dagCharts.popup.tasks.timeline}}</h4>
  34. </div>
  35. <div id="y-axis"></div>
  36. <div id="chart"></div>
  37. <div id="timeline1"></div>
  38. </div>
  39. <div id="legend_container" class="pull-left">
  40. <div id="legend"></div>
  41. </div>
  42. </div>
  43. <div id="graph2" class="pull-right">
  44. <div class="pull-left">
  45. <div id="graph2_desc" class="graph_desc">
  46. <h4>{{t apps.dagCharts.popup.tasks.tasks}}</h4>
  47. </div>
  48. <div id="y-axis2"></div>
  49. <div id="job_tasks"></div>
  50. <div id="timeline2"></div>
  51. </div>
  52. <div id="tasks_legend_container" class="pull-left">
  53. <div id="tasks_legend"></div>
  54. </div>
  55. </div>
  56. <div class="clearfix"></div>