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/>.
18 @template report_insights/insight_details
20 Actions panel at the bottom of the assignment grading UI.
22 Classes required for JS:
25 Data attributes required for JS:
28 Context variables required for this template:
31 Example context (json):
33 "insightname": "Best insight ever",
34 "timecreated": "Thursday, 5 October 2017, 4:16 PM",
35 "timerange": "Monday, 4 September 2017, 6:00 PM to Thursday, 5 October 2017, 12:00 AM",
36 "sampleimage": "<a href=\"#\">Link</a>",
37 "sampledescription": "Sample description",
41 {"name": "src", "value": "https://moodle.org/logo/moodle-logo.svg" }
44 "predictiondisplayvalue": "This dev will understand it",
50 {"name": "src", "value": "https://moodle.org/logo/moodle-logo.svg" }
53 "name": "Indicator 1",
57 "name": "Indicator 2",
61 "name": "Indicator 2",
65 "name": "Indicator 2",
69 "name": "Indicator 2",
76 <h2 class="m-b-2">{{#str}}insightprediction, report_insights, {{insightname}} {{/str}}</h2>
77 <table class="generaltable insights-list">
79 {{#str}}prediction, report_insights{{/str}}:
80 <span class="{{#style}}table-{{style}}{{/style}}">
84 {{predictiondisplayvalue}}
89 <th scope="col" class="col-sm-10">{{#str}}name{{/str}}</th>
90 <th scope="col" class="col-sm-2">{{#str}}actions{{/str}}</th>
94 {{> report_insights/insight}}
98 <table class="generaltable prediction-timedetails">
99 <caption>{{#str}}predictiondetails, report_insights{{/str}}</caption>
102 <td scope="col" class="col-sm-3">{{#str}}timecreated, report_insights{{/str}}</td>
103 <td scope="col" class="col-sm-9">{{timecreated}}</td>
107 <td scope="col" class="col-sm-3">{{#str}}timerange, report_insights{{/str}}</td>
108 <td scope="col" class="col-sm-9">{{.}}</td>
113 <table class="generaltable prediction-calculations">
114 <caption class="accesshide">{{#str}}predictioncalculations, report_insights{{/str}}</caption>
117 <th scope="col" class="col-sm-8">{{#str}}indicator, report_insights{{/str}}</th>
118 <th scope="col" class="col-sm-4">{{#str}}calculatedvalue, report_insights{{/str}}</th>
124 <td class="{{#style}}table-{{style}}{{/style}} col-sm-8">{{name}}</td>
125 <td class="{{#style}}table-{{style}}{{/style}} col-sm-4">{{#outcomeicon}}{{> core/pix_icon}}{{/outcomeicon}} {{displayvalue}}</td>
131 {{> core/notification_info}}