MDL-59204 mod_*: removed redundant activity name from string index
[moodle.git] / user / templates / unified_filter.mustache
blob81663ae26c6a41e42af41a9d8319a23dcb8b26fe
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/unified_filter
20     Template for the unified filter element.
22     Context variables required for this template:
23     * action string - The action URL for the form.
24     * filteroptions - Array of filter options.
25       * value string - The option value.
26       * label string - The option label.
27       * selected boolean - Whether the option is selected
29     Example context (json):
30     {
31         "action": "/user/index.php",
32         "filteroptions": [
33             {
34                 "value": "1",
35                 "label": "Option 1"
36             },
37             {
38                 "value": "2",
39                 "label": "Option 2",
40                 "selected": true
41             },
42             {
43                 "value": "3",
44                 "label": "Option 3",
45                 "selected": true
46             },
47             {
48                 "value": "4",
49                 "label": "Option 4"
50             }
51         ]
52     }
54 <form method="post" action="{{action}}" class="form-inline m-b-2" role="search">
55     <label for="unified-filters" class="sr-only">{{#str}}filters{{/str}}</label>
56     <select name="unified-filters[]" id="unified-filters" multiple="multiple" data-originaloptionsjson="{{originaloptionsjson}}">
57         {{#filteroptions}}
58             <option value="{{value}}" {{#selected}}selected="selected"{{/selected}}>{{{label}}}</option>
59         {{/filteroptions}}
60     </select>
61     <input type="submit" class="btn btn-primary" id="user-filter-button" value={{#quote}}{{#str}}filter{{/str}}{{/quote}}>
62 </form>
63 {{#js}}
64 require(['core_user/unified_filter'], function(Filter) {
65     Filter.init();
66 });
67 {{/js}}