123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!-- /*
- * Licensed Materials - Property of IBM
- *
- * IBM Cognos Products: SHARE
- *
- * (C) Copyright IBM Corp. 2015, 2016
- *
- * US Government Users Restricted Rights - Use, duplication or disclosure
- * restricted by GSA ADP Schedule Contract with IBM Corp.
- */ -->
- <div class="schedule_view_panel">
- {{? it.show_create}}
- <div class="schedule_create_new" role="region" aria-label="{{=it.schedule_toolbar_label}}">
- <button class='btn btn-link' aria-label="{{=it.schedule_new_btn_label}}">
- <span class="schedule_common_icon schedule_create_new_icon" data-icon="add"></span>
- {{=it.schedule_new_label}}
- </button>
- </div>
- <div class="schedule_no_schedule_container"></div>
- {{??}}
- <div class="schedule_toolbar propertyUIControl" role="region" aria-label="{{=it.schedule_toolbar_label}}">
- <div class="schedules_controls_container">
- <div class="schedule_toggle_container">
- <span class="schedule_toggle_button_label">{{=it.schedule_toggle_label}}</span>
- <div class="schedule_toggle_button_container"></div>
- </div>
- <button class='btn btn-link schedule_delete_button'>
- <span class="schedule_common_icon schedule_delete_schedule_icon" data-icon="remove-trash"></span>
- {{=it.schedule_delete_label}}
- </button>
- </div>
- </div>
- <div class="schedule_display">
- <div class="schedule_short_summary">
- <div class="schedule_name"><span class='interval'>{{=it.schedule_type}}</span> - {{=it.schedule_cadence_label}}</div>
- {{?it.show_formats}}
- <div class="schedule_formats">
- {{~it.outputFormat :format:index}}
- <div class="schedule_format">
- <span class="schedule_common_icon schedule_format_icon" data-icon="{{=format.icon}}"></span>
- <span class="schedule_format_label">{{=format.displayName}}</span>
- </div>
- {{~}}
- </div>
- {{?}}
- </div>
- <div class="schedule_expand_schedule">
- <button class="btn btn-link schedule_expand" title="{{=it.schedule_update_label}}">
- <svg class="svgIcon">
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-chevron_right"></use>
- </svg>
- </button>
- </div>
- </div>
- {{?}}
- </div>
|