MDL-61899 tool_dataprivacy: Delete user after deletion request or expired context
[moodle.git] / calendar / templates / event_item.mustache
blob91d075198876c139282021f129ea9639fbb51c5d
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 calendar/event_item
20     Calendar event item.
22     The purpose of this template is to render the event item.
24     Classes required for JS:
25     * none
27     Data attributes required for JS:
28     * none
30     Example context (json):
31     {
32     }
34 <div{{!
35     }} data-type="event"{{!
36     }} data-course-id="{{course.id}}"{{!
37     }} data-event-id="{{id}}"{{!
38     }} class="event"{{!
39     }} data-eventtype-{{calendareventtype}}="1"{{!
40     }} data-event-title="{{name}}"{{!
41     }} data-event-count="{{eventcount}}"{{!
42     }}>
43     <div class="card">
44         <div class="box card-header clearfix p-y-1">
45             <div class="commands pull-xs-right">
46                 {{#canedit}}
47                     {{#candelete}}
48                         <a href="{{deleteurl}}" data-action="delete">
49                             {{#pix}}t/delete, core, {{#str}}delete{{/str}}{{/pix}}
50                         </a>
51                     {{/candelete}}
52                     <a href="{{editurl}}" data-action="edit">
53                         {{#pix}}t/edit, core, {{#str}}edit{{/str}}{{/pix}}
54                     </a>
55                 {{/canedit}}
56             </div>
57             {{#icon}}{{#pix}} {{key}}, {{component}}, {{alttext}} {{/pix}}{{/icon}}
58             <h3 class="name d-inline-block">{{name}}</h3>
59             <span class="date pull-xs-right m-r-1">{{{formattedtime}}}</span>
60         </div>
61         <div class="description card-block calendar_event_{{eventtype}}">
62             <p>{{{description}}}</p>
63             {{#iscourseevent}}
64                 <div><a href="{{url}}">{{course.fullname}}</a></div>
65             {{/iscourseevent}}
66             {{> core_calendar/event_subscription}}
67             {{#isactionevent}}
68                 <a href="{{url}}">{{#str}} gotoactivity, core_calendar {{/str}}</a>
69             {{/isactionevent}}
70             {{#groupname}}
71                 <div><a href="{{url}}">{{{course.fullname}}}</a></div>
72                 <div>{{{groupname}}}</div>
73             {{/groupname}}
74         </div>
75     </div>
76 </div>