{{! This file is part of Moodle - http://moodle.org/ Moodle is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Moodle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Moodle. If not, see . }} {{! @template tool_lp/user_competency_course_navigation Show an auto-complete for jumping to competencies in a plan. Context variables required for this template: * groupselector - HTML * hasusers * users - array * id * selected * fullname * hascompetencies * competencies - array * id * selected * shortname * idnumber // No example context because the JS is connected to webservices }}

{{{groupselector}}}

{{#hasusers}} {{/hasusers}}
{{#hascompetencies}} {{/hascompetencies}}
{{#js}} require(['core/form-autocomplete', 'tool_lp/user_competency_course_navigation'], function(autocomplete, nav) { (new nav('#user-nav-{{uniqid}}', '#competency-nav-{{uniqid}}', '{{baseurl}}', {{userid}}, {{competencyid}}, {{courseid}})); {{#hasusers}} autocomplete.enhance('#user-nav-{{uniqid}}', false, false, {{# quote }}{{# str }}jumptouser, tool_lp{{/ str }}{{/ quote }}); {{/hasusers}} {{#hascompetencies}} autocomplete.enhance('#competency-nav-{{uniqid}}', false, false, {{# quote }}{{# str }}jumptocompetency, tool_lp{{/ str }}{{/ quote }}); {{/hascompetencies}} }); {{/js}}