SchedulesView.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!-- /*
  2. * Licensed Materials - Property of IBM
  3. *
  4. * IBM Cognos Products: SHARE
  5. *
  6. * (C) Copyright IBM Corp. 2015, 2016
  7. *
  8. * US Government Users Restricted Rights - Use, duplication or disclosure
  9. * restricted by GSA ADP Schedule Contract with IBM Corp.
  10. */ -->
  11. <div class="schedule_view_panel">
  12. {{? it.show_create}}
  13. <div class="schedule_create_new" role="region" aria-label="{{=it.schedule_toolbar_label}}">
  14. <button class='btn btn-link' aria-label="{{=it.schedule_new_btn_label}}">
  15. <span class="schedule_common_icon schedule_create_new_icon" data-icon="add"></span>
  16. {{=it.schedule_new_label}}
  17. </button>
  18. </div>
  19. <div class="schedule_no_schedule_container"></div>
  20. {{??}}
  21. <div class="schedule_toolbar propertyUIControl" role="region" aria-label="{{=it.schedule_toolbar_label}}">
  22. <div class="schedules_controls_container">
  23. <div class="schedule_toggle_container">
  24. <span class="schedule_toggle_button_label">{{=it.schedule_toggle_label}}</span>
  25. <div class="schedule_toggle_button_container"></div>
  26. </div>
  27. <button class='btn btn-link schedule_delete_button'>
  28. <span class="schedule_common_icon schedule_delete_schedule_icon" data-icon="remove-trash"></span>
  29. {{=it.schedule_delete_label}}
  30. </button>
  31. </div>
  32. </div>
  33. <div class="schedule_display">
  34. <div class="schedule_short_summary">
  35. <div class="schedule_name"><span class='interval'>{{=it.schedule_type}}</span> - {{=it.schedule_cadence_label}}</div>
  36. {{?it.show_formats}}
  37. <div class="schedule_formats">
  38. {{~it.outputFormat :format:index}}
  39. <div class="schedule_format">
  40. <span class="schedule_common_icon schedule_format_icon" data-icon="{{=format.icon}}"></span>
  41. <span class="schedule_format_label">{{=format.displayName}}</span>
  42. </div>
  43. {{~}}
  44. </div>
  45. {{?}}
  46. </div>
  47. <div class="schedule_expand_schedule">
  48. <button class="btn btn-link schedule_expand" title="{{=it.schedule_update_label}}">
  49. <svg class="svgIcon">
  50. <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-chevron_right"></use>
  51. </svg>
  52. </button>
  53. </div>
  54. </div>
  55. {{?}}
  56. </div>