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/>.
18 @template core_user/participantsfilter
20 Template for the form containing one or more filter rows.
22 Example context (json):
43 <div id="core_user-participantsfilter-{{uniqid}}" class="filter-group mt-5 p-3 rounded border border-secondary" data-table-region="{{tableregionid}}" data-table-course-id="{{courseid}}">
44 <div data-filterregion="filters">
45 {{> core_user/local/participantsfilter/filterrow }}
48 <div class="display-block" data-filterregion="actions">
50 <button type="button" class="btn btn-link d-inline-block float-left" data-filteraction="add">
51 <i class="fa fa-plus"></i><span class="pl-3">{{#str}}addcondition, core_user{{/str}}</span>
54 <div class="float-right">
55 <button data-filteraction="reset" type="button" class="btn btn-light d-inline-block">{{#str}}clearfilters, core_user{{/str}}</button>
56 <button data-filteraction="apply" type="button" class="btn btn-primary d-inline-block">{{#str}}applyfilters, core_user{{/str}}</button>
60 {{> core_user/local/participantsfilter/filtertypes}}
64 require(['core_user/participantsfilter'], function(ParticipantsFilter) {
65 ParticipantsFilter.init('core_user-participantsfilter-{{uniqid}}');