MDL-65978 blog: Fix removing associations
[moodle.git] / course / templates / course_search_form.mustache
bloba128979588d5fba2e5f73c80e1b6697c82c458aa
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_course/course_search_form
20     This template renders the form for course search.
22     Example context (json):
23     {
24         "searchurl": "https://moodlesite/course/search.php",
25         "id": "coursesearch",
26         "inputid": "coursesearchbox",
27         "inputsize": 30,
28         "value": "certificate",
29         "name" : "q",
30         "helpicon": [{
31             "heading": "Search courses",
32             "text": "You can search for multiple words at once and can refine your search as follows:"
33         }]
34     }
36 <form action="{{searchurl}}" id="{{id}}" method="get" class="d-flex flex-wrap align-items-center">
37     <fieldset class="coursesearchbox invisiblefieldset">
38         <label for="{{inputid}}">{{#str}}searchcourses{{/str}}</label>
39         <input id="{{inputid}}" name="q" type="text" size="{{inputsize}}" value="{{value}}" class="form-control mb-1 mb-sm-0">
40         <input name="areaids" type="hidden" value="{{areaids}}">
41         <button class="btn btn-secondary" type="submit">{{#str}}go{{/str}}</button>
42         {{#helpicon}}
43             {{>core/help_icon}}
44         {{/helpicon}}
45     </fieldset>
46 </form>