Merge branch 'MDL-75985-311' of https://github.com/andrewnicols/moodle into MOODLE_31...
[moodle.git] / blocks / myoverview / templates / view-list.mustache
blob06a35f6a68501321ddb5905fd5a533263caefc5d
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 block_myoverview/view-list
20     This template renders the list view for the myoverview block.
22     Example context (json):
23     {
24         "courses": [
25             {
26                 "name": "Assignment due 1",
27                 "viewurl": "https://moodlesite/course/view.php?id=2",
28                 "courseimage": "https://moodlesite/pluginfile/123/course/overviewfiles/123.jpg",
29                 "fullname": "course 3",
30                 "hasprogress": true,
31                 "progress": 10,
32                 "coursecategory": "Miscellaneous",
33                 "visible": true
34             }
35         ]
36     }
39 <ul class="list-group">
40 {{#courses}}
41     <li class="list-group-item course-listitem"
42         data-region="course-content"
43         data-course-id="{{{id}}}">
44         <div class="row">
45             <div class="{{#hasprogress}}col-md-6{{/hasprogress}}{{^hasprogress}}col-md-11 col-md-11{{/hasprogress}} d-flex align-items-center">
46                 <div>
47                     <div class="text-muted muted d-flex flex-wrap">
48                         {{#showcoursecategory}}
49                             <span class="sr-only">
50                                 {{#str}}aria:coursecategory, core_course{{/str}}
51                             </span>
52                             <span class="categoryname">
53                                 {{{coursecategory}}}
54                             </span>
55                         {{/showcoursecategory}}
56                         {{#showshortname}}
57                             {{#showcoursecategory}}
58                                 <div class="pl-1 pr-1">|</div>
59                             {{/showcoursecategory}}
60                         <span class="sr-only">
61                             {{#str}}aria:courseshortname, core_course{{/str}}
62                         </span>
63                         <div>{{{shortname}}}</div>
64                         {{/showshortname}}
65                     </div>
66                     <a href="{{viewurl}}" class="aalink coursename">
67                         {{> core_course/favouriteicon }}
68                         <span class="sr-only">
69                             {{#str}}aria:coursename, core_course{{/str}}
70                         </span>
71                         {{{fullname}}}
72                     </a>
73                     {{^visible}}
74                         <div class="d-flex flex-wrap">
75                             <span class="badge badge-info">{{#str}} hiddenfromstudents {{/str}}</span>
76                         </div>
77                     {{/visible}}
78                 </div>
79             </div>
80             {{#hasprogress}}
81             <div class="col-md-5 pt-1">
82                 {{> block_myoverview/progress-bar}}
83             </div>
84             {{/hasprogress}}
85             <div class="col-md-1 p-0 d-flex">
86                 {{> block_myoverview/course-action-menu }}
87             </div>
88         </div>
89     </li>
90 {{/courses}}
91 </ul>