mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00
MDL-64694 report_insights: Remove unnecessary cell classes
This commit is contained in:
parent
06c98804f8
commit
541122f622
3 changed files with 14 additions and 14 deletions
|
@ -35,13 +35,13 @@
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="col-sm-10">
|
<td>
|
||||||
{{#sampleimage}}
|
{{#sampleimage}}
|
||||||
{{{sampleimage}}}
|
{{{sampleimage}}}
|
||||||
{{/sampleimage}}
|
{{/sampleimage}}
|
||||||
{{{sampledescription}}}
|
{{{sampledescription}}}
|
||||||
</td>
|
</td>
|
||||||
<td class="col-sm-2">
|
<td>
|
||||||
{{#actions}}
|
{{#actions}}
|
||||||
{{> core/action_menu}}
|
{{> core/action_menu}}
|
||||||
{{/actions}}
|
{{/actions}}
|
||||||
|
|
|
@ -86,8 +86,8 @@
|
||||||
</caption>
|
</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="col-sm-10">{{#str}}name{{/str}}</th>
|
<th scope="col">{{#str}}name{{/str}}</th>
|
||||||
<th scope="col" class="col-sm-2">{{#str}}actions{{/str}}</th>
|
<th scope="col">{{#str}}actions{{/str}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -99,13 +99,13 @@
|
||||||
<caption>{{#str}}predictiondetails, report_insights{{/str}}</caption>
|
<caption>{{#str}}predictiondetails, report_insights{{/str}}</caption>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="col" class="col-sm-3">{{#str}}timecreated, report_insights{{/str}}</td>
|
<td scope="row">{{#str}}timecreated, report_insights{{/str}}</td>
|
||||||
<td scope="col" class="col-sm-9">{{timecreated}}</td>
|
<td>{{timecreated}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{#timerange}}
|
{{#timerange}}
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="col" class="col-sm-3">{{#str}}timerange, report_insights{{/str}}</td>
|
<td scope="row">{{#str}}timerange, report_insights{{/str}}</td>
|
||||||
<td scope="col" class="col-sm-9">{{.}}</td>
|
<td>{{.}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/timerange}}
|
{{/timerange}}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -114,15 +114,15 @@
|
||||||
<caption class="accesshide">{{#str}}predictioncalculations, report_insights{{/str}}</caption>
|
<caption class="accesshide">{{#str}}predictioncalculations, report_insights{{/str}}</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="col-sm-8">{{#str}}indicator, report_insights{{/str}}</th>
|
<th scope="col">{{#str}}indicator, report_insights{{/str}}</th>
|
||||||
<th scope="col" class="col-sm-4">{{#str}}calculatedvalue, report_insights{{/str}}</th>
|
<th scope="col">{{#str}}calculatedvalue, report_insights{{/str}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#calculations}}
|
{{#calculations}}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="{{#style}}table-{{style}}{{/style}} col-sm-8">{{name}}</td>
|
<td class="{{#style}}table-{{style}}{{/style}}">{{name}}</td>
|
||||||
<td class="{{#style}}table-{{style}}{{/style}} col-sm-4">{{#outcomeicon}}{{> core/pix_icon}}{{/outcomeicon}} {{displayvalue}}</td>
|
<td class="{{#style}}table-{{style}}{{/style}}">{{#outcomeicon}}{{> core/pix_icon}}{{/outcomeicon}} {{displayvalue}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/calculations}}
|
{{/calculations}}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -98,8 +98,8 @@
|
||||||
</caption>
|
</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="col-sm-10">{{#str}}name{{/str}}</th>
|
<th scope="col">{{#str}}name{{/str}}</th>
|
||||||
<th scope="col" class="col-sm-2">{{#str}}actions{{/str}}</th>
|
<th scope="col">{{#str}}actions{{/str}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
{{#insights}}
|
{{#insights}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue