1 |
efrain |
1 |
{{!
|
|
|
2 |
This file is part of Moodle - http://moodle.org/
|
|
|
3 |
|
|
|
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.
|
|
|
8 |
|
|
|
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.
|
|
|
13 |
|
|
|
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/>.
|
|
|
16 |
}}
|
|
|
17 |
{{!
|
|
|
18 |
@template tool_lp/linked_courses_summary
|
|
|
19 |
|
|
|
20 |
Moodle template for the list of linked courses to a competency
|
|
|
21 |
|
|
|
22 |
Classes required for JS:
|
|
|
23 |
* none
|
|
|
24 |
|
|
|
25 |
Data attributes required for JS:
|
|
|
26 |
* none
|
|
|
27 |
|
|
|
28 |
Context variables required for this template:
|
|
|
29 |
* courses array
|
|
|
30 |
* viewurl
|
|
|
31 |
* fullname
|
|
|
32 |
* shortname
|
|
|
33 |
|
|
|
34 |
Example context (json):
|
|
|
35 |
{ "courses":
|
|
|
36 |
[
|
|
|
37 |
{
|
|
|
38 |
"viewurl": "http://example.com",
|
|
|
39 |
"fullname": "Course 1",
|
|
|
40 |
"shortname": "C1"
|
|
|
41 |
}
|
|
|
42 |
]
|
|
|
43 |
}
|
|
|
44 |
}}
|
|
|
45 |
|
|
|
46 |
<p>
|
|
|
47 |
{{#str}}coursesusingthiscompetency, tool_lp{{/str}}
|
|
|
48 |
</p>
|
|
|
49 |
<ol class="mt-0 mb-0 mx-3 p-0">
|
|
|
50 |
{{#courses}}
|
|
|
51 |
<li class="py-1"><a href="{{viewurl}}">{{{fullname}}} {{{shortname}}}</a></li>
|
|
|
52 |
{{/courses}}
|
|
|
53 |
{{^courses}}
|
|
|
54 |
<div class="badge badge-sq badge-danger">{{#str}}nolinkedcourses, tool_lp{{/str}}</div>
|
|
|
55 |
{{/courses}}
|
|
|
56 |
</ol>
|