Automatically generated installer lang files
[moodle.git] / user / templates / participantsfilter.mustache
blobfc9a8b8520bf809bdde3438871e7bbe7683e07d0
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_user/participantsfilter
20     Template for the form containing one or more filter rows.
22     Example context (json):
23     {
24         "filtertypes": [
25             {
26                 "name": "status",
27                 "title": "Status",
28                 "values": [
29                     {
30                         "value": 1,
31                         "title": "Active"
32                     },
33                     {
34                         "value": 0,
35                         "title": "Suspended"
36                     }
37                 ]
38             }
39         ]
40     }
43 <div id="core_user-participantsfilter-{{uniqid}}" class="filter-group my-2 p-2 bg-light border-radius border" data-table-region="{{tableregionid}}" data-table-course-id="{{courseid}}" data-filterverb="2">
44     <div data-filterregion="filtermatch" class="hidden">
45         <label for="core_user-local-participantsfilter-jointype-{{uniqid}}" class="my-0" aria-hidden="true">
46             {{#str}}match, core_user{{/str}}
47         </label>
48         <select class="custom-select" data-filterfield="join" id="core_user-local-participantsfilter-jointype-{{uniqid}}"
49                 aria-label="{{#str}}filtersetmatchdescription, core_user{{/str}}">
50             <option value="0">{{#str}}none{{/str}}</option>
51             <option value="1">{{#str}}any{{/str}}</option>
52             <option value="2" selected>{{#str}}all{{/str}}</option>
53         </select>
54         <span aria-hidden="true">{{#str}}matchofthefollowing, core_user{{/str}}</span>
55     </div>
57     <div data-filterregion="filters">
58         {{> core_user/local/participantsfilter/filterrow }}
59     </div>
61     <div class="d-flex" data-filterregion="actions">
62         &nbsp;
63         <button type="button" class="btn btn-link text-reset" data-filteraction="add">
64             <i class="fa fa-plus"></i><span class="pl-3">{{#str}}addcondition, core_user{{/str}}</span>
65         </button>
66         <button data-filteraction="reset" type="button" class="btn btn-secondary ml-auto mr-2">{{#str}}clearfilters, core_user{{/str}}</button>
67         <button data-filteraction="apply" type="button" class="btn btn-primary">{{#str}}applyfilters, core_user{{/str}}</button>
68     </div>
70     {{> core_user/local/participantsfilter/filtertypes}}
71 </div>
73 {{#js}}
74 require(['core_user/participantsfilter'], function(ParticipantsFilter) {
75     ParticipantsFilter.init('core_user-participantsfilter-{{uniqid}}');
76 });
77 {{/js}}