Merge branch 'MDL-79664' of https://github.com/paulholden/moodle
[moodle.git] / user / templates / form_user_selector_searchtype.mustache
blob5655bf6fbddc2d376c320e140048bf0c7d42a451
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/form_user_selector_searchtype
20     Template for the form_user_selector search type.
22     Context variables required for this template:
23     * defaultvalue int - The user's full name.
24     * fields list - the input element attributes and label
26     Example context (json):
27        {
28            "fields": [
29                {
30                    "id": "id",
31                    "name": "userselector_searchexactmatchesonly",
32                    "class": "class",
33                    "label": "Search anywhere",
34                    "checked": true
35                }
36            ]
37        }
39 <div class="form-check justify-content-start ml-1">
40    <span class="mr-1">{{#str}}userselectorsearchmatching, core{{/str}}</span>
41     {{#fields}}
42         <label for="{{id}}">
43             <input id="{{id}}" type="radio" value="{{value}}" name="{{name}}" class="{{class}}" {{#checked}}checked{{/checked}}>
44             {{label}}
45         </label>
46     {{/fields}}
47 </div>