MDL-63044 block_timeline: add timeline block
[moodle.git] / blocks / timeline / templates / event-list-item.mustache
blob40fe0dccf4e28015eff99e4a2cf45758dc76079d
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/event-list-item
20     This template renders an event list item for the timeline block.
22     Example context (json):
23     {
24         "name": "Assignment due 1",
25         "url": "https://www.google.com",
26         "timesort": 1490320388,
27         "course": {
28             "fullnamedisplay": "Course 1"
29         },
30         "action": {
31             "name": "Submit assignment",
32             "url": "https://www.google.com",
33             "itemcount": 1,
34             "showitemcount": true,
35             "actionable": true
36         },
37         "icon": {
38             "key": "icon",
39             "component": "mod_assign",
40             "alttext": "Assignment icon"
41         }
42     }
45     class="list-group-item list-group-item-action flex-column py-2 pl-0 pr-0 border-0"
46     href="{{{action.url}}}"
47     title="{{name}}"
48     data-region="event-list-item"
49     aria-label='{{#str}} ariaeventlistitem, block_timeline, { "name": "{{name}}", "course": "{{course.fullnamedisplay}}", "date": "{{#userdate}} {{timesort}}, {{#str}} strftimedatetime, core_langconfig {{/str}} {{/userdate}}" } {{/str}}'
51     <div class="d-flex">
52         <div class="icon-size-4 d-flex align-self-center">
53             {{#icon}}{{#pix}} {{key}}, {{component}}, {{alttext}} {{/pix}}{{/icon}}
54         </div>
55         <div class="w-100 event-name-container text-truncate line-height-3">
56             <h6 class="event-name text-truncate mb-0">{{{name}}}</h6>
57             <small class="text-muted text-truncate m-b-0">{{{course.fullnamedisplay}}}</small>
58         </div>
59         <small class="text-right text-nowrap ml-1">
60             {{#userdate}} {{timesort}}, {{#str}} strftimetime24, core_langconfig {{/str}} {{/userdate}}
61         </small>
62     </div>
63 </a>