Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

{{!
    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 <http://www.gnu.org/licenses/>.
}}
{{!
    @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
}}
<div class="float-sm-right border rounded p-2 mb-2">
    {{{groupselector}}}
    <form class="user-competency-course-navigation">
        <input type="hidden" name="userid" value="{{userid}}"/>
        <input type="hidden" name="competencyid" value="{{competencyid}}"/>
        <input type="hidden" name="courseid" value="{{courseid}}"/>
        {{#hasusers}}
        <span>
        <label for="user-nav-{{uniqid}}" class="accesshide">{{#str}}jumptouser, tool_lp{{/str}}</label>
        <select id="user-nav-{{uniqid}}" class="custom-select">
        {{#users}}
        <option value="{{id}}" {{#selected}}selected="selected"{{/selected}}>{{fullname}}</option>
        {{/users}}
        </select>
        </span>
        {{/hasusers}}
        <br>
        {{#hascompetencies}}
        <span>
        <label for="competency-nav-{{uniqid}}" class="accesshide">{{#str}}jumptocompetency, tool_lp{{/str}}</label>
        <select id="competency-nav-{{uniqid}}" class="custom-select">
        {{#competencies}}
        <option value="{{id}}" {{#selected}}selected="selected"{{/selected}}>{{{shortname}}} {{idnumber}}</option>
        {{/competencies}}
        </select>
        </span>
        {{/hascompetencies}}
    </form>
</div>
{{#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}}