Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{{!
2
    This file is part of Moodle - http://moodle.org/
3
 
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.
8
 
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.
13
 
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/>.
16
}}
17
{{!
18
    @template block_timeline/event-list-content
19
 
20
    This template renders a group of event list items for the timeline block.
21
 
22
    Example context (json):
23
    {
24
        "events": [
25
            {
26
                "name": "Assignment due 1",
27
                "url": "https://www.google.com",
28
                "timesort": 1490320388,
29
                "course": {
30
                    "fullnamedisplay": "Course 1"
31
                },
32
                "action": {
33
                    "name": "Submit assignment",
34
                    "url": "https://www.google.com",
35
                    "itemcount": 1,
36
                    "actionable": true
37
                },
38
                "icon": {
39
                    "key": "icon",
40
                    "component": "mod_assign",
41
                    "alttext": "Assignment icon"
42
                }
43
            },
44
            {
45
                "name": "Assignment due 2",
46
                "url": "https://www.google.com",
47
                "timesort": 1490320388,
48
                "course": {
49
                    "fullnamedisplay": "Course 1"
50
                },
51
                "action": {
52
                    "name": "Submit assignment",
53
                    "url": "https://www.google.com",
54
                    "itemcount": 1,
55
                    "actionable": true
56
                },
57
                "icon": {
58
                    "key": "icon",
59
                    "component": "mod_assign",
60
                    "alttext": "Assignment icon"
61
                }
62
            }
63
        ]
64
    }
65
}}
66
<div class="pb-2" data-region="event-list-wrapper">
67
    {{#eventsbyday}}
68
        <h5 class="rui-timeline-date mt-1 mb-0" data-region="event-list-content-date" data-timestamp="{{dayTimestamp}}">
69
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="currentColor"><g data-name="Layer 2"><g data-name="calendar"><rect width="24" height="24" opacity="0"/><path d="M18 4h-1V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zM6 6h1v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h1a1 1 0 0 1 1 1v4H5V7a1 1 0 0 1 1-1zm12 14H6a1 1 0 0 1-1-1v-6h14v6a1 1 0 0 1-1 1z"/><circle cx="8" cy="16" r="1"/><path d="M16 15h-4a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2z"/></g></g></svg>
70
            <span class="rui-timeline-date-txt">{{#userdate}} {{dayTimestamp}}, {{#str}} strftimedaydate, core_langconfig {{/str}}  {{/userdate}}</span>
71
        </h5>
72
        {{> block_timeline/event-list-items }}
73
    {{/eventsbyday}}
74
</div>