Merge branch 'MDL-64959_master' of https://github.com/abhimanyuZ/moodle
[moodle.git] / admin / templates / setting_special_calendar_weekend.mustache
blob54715f8bf0677fbc8c25fd7f8bbc38a5213a5b89
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 core_admin/setting_special_calendar_weekend
20     Admin special_calendar_weekend setting template.
22     Context variables required for this template:
23     * name - form element name
24     * id - form element id
25     * days - list of days containing index, label, checked
27     Example context (json):
28     {
29         "name": "test",
30         "id": "i1",
31         "days": [
32             { "index": 0, "label": "Monday", "checked": true },
33             { "index": 0, "label": "Tuesday", "checked": false }
34         ]
35     }
37 <table>
38     <thead>
39         <tr>
40             <input type="hidden" name="{{name}}[xxxxx]" value="1">
41             {{#days}}
42                 <td>
43                     <label for="{{id}}{{index}}">{{label}}</label>
44                 </td>
45             {{/days}}
46         </tr>
47     </thead>
48     <tbody>
49         <tr>
50             {{#days}}
51                 <td>
52                     <input type="checkbox" class="form-checkbox" id="{{id}}{{index}}" name="{{name}}[]" value="{{index}}" {{#checked}}checked{{/checked}}>
53                 </td>
54             {{/days}}
55         </tr>
56     </tbody>
57 </table>