bar.hbs 1.8 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. <h2>Bar</h2>
  19. <div class="btn-group">
  20. <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
  21. Job
  22. <span class="caret"></span>
  23. </button>
  24. <ul class="dropdown-menu">
  25. {{#each job in view.content}}
  26. <li><a {{action "selectJob" job target="view"}} href="javascript:void(null)">{{job.id}}</a></li>
  27. {{/each}}
  28. </ul>
  29. </div>
  30. <div></div>
  31. <div id="graph1">
  32. <div style="float:left">
  33. <div id="graph1_desc" class="graph_desc">
  34. Job Timeline
  35. </div>
  36. <div id="chart"></div>
  37. <div id="timeline1"></div>
  38. </div>
  39. <div id="legend_container" style="float:left;margin-top:60px">
  40. <div id="legend"></div>
  41. </div>
  42. <div style="clear: both"></div>
  43. </div>
  44. <div id="graph2">
  45. <div style="float:left">
  46. <div id="graph2_desc" class="graph_desc">
  47. Job Tasks' View
  48. </div>
  49. <div id="job_tasks"></div>
  50. <div id="timeline2"></div>
  51. </div>
  52. <div id="tasks_legend_container" style="float:left;margin-top:60px">
  53. <div id="tasks_legend"></div>
  54. </div>
  55. <div style="clear: both"></div>
  56. </div>