MDL-63044 block_timeline: add timeline block
[moodle.git] / blocks / timeline / templates / nav-view-selector.mustache
blob50c2add83d779aaff7b63e13a3e8333d79fde625
1 {{!
2     This file is part of Moodle - http://moodle.org/
4     Moodle is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
9     Moodle is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
14     You should have received a copy of the GNU General Public License
15     along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 {{!
18     @template block_timeline/nav-view-selector
20     This template renders the timeline sort selector.
22     Example context (json):
23     {}
25 <div data-region="view-selector" class="btn-group">
26     <button type="button" class="btn btn-outline-secondary dropdown-toggle icon-no-margin" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
27         {{#pix}} i/filter {{/pix}}
28         <span class="sr-only">
29             {{#str}} ariaviewselector, block_timeline{{/str}}
30             <span data-active-item-text>{{#str}} sortbydates, block_timeline {{/str}}</span>
31         </span>
32     </button>
33     <div role="menu" class="dropdown-menu dropdown-menu-right list-group hidden" data-show-active-item data-skip-active-class="true">
34         <a
35             class="dropdown-item active"
36             href="#view_dates_{{uniqid}}"
37             data-toggle="tab"
38             aria-label="{{#str}} ariaviewselectoroption, block_timeline, {{#str}} sortbydates, block_timeline {{/str}}{{/str}}"
39         >
40             {{#str}} sortbydates, block_timeline {{/str}}
41         </a>
42         <a
43             class="dropdown-item"
44             href="#view_courses_{{uniqid}}"
45             data-toggle="tab"
46             aria-label="{{#str}} ariaviewselectoroption, block_timeline, {{#str}} sortbycourses, block_timeline {{/str}}{{/str}}"
47         >
48             {{#str}} sortbycourses, block_timeline {{/str}}
49         </a>
50     </div>
51 </div>