Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 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 core_courseformat/local/overview/overviewtable
19
 
20
    Shows an activity plugin overview table.
21
 
22
    Example context (json):
23
    {
24
        "caption": "Activity completion overview table",
25
        "headers": [
26
            {
27
                "key": "name",
28
                "name": "Activity Name",
29
                "textalign": "text-start"
30
            },
31
            {
32
                "key": "completion",
33
                "name": "Completion",
34
                "textalign": "text-center"
35
            }
36
        ],
37
        "activities": [
38
            {
39
                "cmid": 1,
40
                "overviews": [
41
                    {
42
                        "overview": "name",
43
                        "value": "Assignment 1",
44
                        "content": "Assignment 1",
45
                        "textalign": "text-start"
46
                    },
47
                    {
48
                        "overview": "completion",
49
                        "value": "1",
50
                        "content": "Complete",
51
                        "textalign": "text-center",
52
                        "alertcount": 1,
53
                        "alertlabel": "Assignment 1 has 1 alert"
54
                    }
55
                ]
56
            },
57
            {
58
                "cmid": 2,
59
                "overviews": [
60
                    {
61
                        "overview": "name",
62
                        "value": "Quiz 1",
63
                        "content": "Quiz 1",
64
                        "textalign": "text-start"
65
                    },
66
                    {
67
                        "overview": "completion",
68
                        "value": "0",
69
                        "content": "Incomplete",
70
                        "textalign": "text-center",
71
                        "alertcount": 0,
72
                        "alertlabel": ""
73
                    }
74
                ]
75
            }
76
        ]
77
    }
78
}}
79
<div class="course-overview border table-responsive border-secondary border-1 rounded pt-2">
80
    <table
81
        class="course-overview-table boxaligncenter {{!
82
            }} table w-100 d-block d-md-table"
83
    >
84
    <caption class="accesshide">{{caption}}</caption>
85
    <thead>
86
        <tr>
87
            {{#headers}}
88
            <th
89
                class="{{textalign}} border-top-0"
90
                scope="col"
91
                data-mdl-overview-column="{{key}}"
92
            >{{{name}}}</th>
93
            {{/headers}}
94
        </tr>
95
    </thead>
96
    <tbody>
97
        {{#activities}}
98
        <tr data-mdl-overview-cmid="{{cmid}}">
99
            {{#overviews}}
100
            <td
101
                class="{{textalign}}"
102
                data-mdl-overview-item="{{overview}}"
103
                data-mdl-overview-value="{{value}}"
104
                {{#alertcount}}
105
                data-mdl-overview-alertcount="{{alertcount}}"
106
                data-mdl-overview-alertlabel="{{alertlabel}}"
107
                {{/alertcount}}
108
            >
109
                {{{content}}}
110
            </td>
111
            {{/overviews}}
112
        </tr>
113
        {{/activities}}
114
    </tbody>
115
    </table>
116
</div>