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/view
19
 
20
    This template renders the timeline view for the timeline block.
21
 
22
    Example context (json):
23
    {
24
        "midnight": 1538954668,
25
        "coursepages": [
26
            {}
27
        ],
28
        "urls": {
29
            "nocourses": "#",
30
            "noevents": "#"
31
        },
32
        "sorttimelinedates": true,
33
        "sorttimelinecourses": false,
34
        "selectedfilter": "all",
35
        "hasdaysoffset": true,
36
        "hasdayslimit": false,
37
        "nodayslimit": true,
38
        "all": true,
39
        "overdue": false,
40
        "next7days": false,
41
        "next30days": false,
42
        "next3months": false,
43
        "next6months": false,
44
        "daysoffset": -14,
45
        "dayslimit": false,
46
        "limit": 0,
47
        "hascourses": true,
48
        "overdue": false
49
    }
50
}}
51
<div data-region="timeline-view">
52
    <div class="tab-content">
53
        <div class="tab-pane {{#sorttimelinedates}}active show{{/sorttimelinedates}} fade" data-limit="{{limit}}" data-region="view-dates" id="view_dates_{{uniqid}}-{{timelineinstanceid}}">
54
            {{> block_timeline/view-dates }}
55
        </div>
56
        <div
57
            class="tab-pane {{#sorttimelinecourses}}active show{{/sorttimelinecourses}} fade"
58
            data-region="view-courses"
59
            data-midnight="{{midnight}}"
60
            data-limit="2"
61
            data-offset="0"
62
            data-days-limit="{{dayslimit}}"
63
            data-days-offset="{{daysoffset}}"
64
            data-no-events-url="{{urls.noevents}}"
65
            {{#overdue}}data-filter-overdue="{{overdue}}"{{/overdue}}
66
            id="view_courses_{{uniqid}}-{{timelineinstanceid}}"
67
        >
68
            {{> block_timeline/view-courses }}
69
        </div>
70
    </div>
71
</div>