forked from phcode-dev/staging.phcode.dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproblems-panel-table.html
More file actions
41 lines (41 loc) · 1.55 KB
/
problems-panel-table.html
File metadata and controls
41 lines (41 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<table class="bottom-panel-table table table-striped table-condensed row-highlight">
<tbody>
{{#reportList}}
<tr class="inspector-section">
<td colspan="4">
<span class="disclosure-triangle {{#isExpanded}}expanded{{/isExpanded}}"></span>
<input type="hidden" value="{{providerName}}" />
{{providerName}} ({{results.length}})
</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
{{#results}}
<tr class="{{display}} inspector-line">
<td class="line-number" data-line="{{pos.line}}" data-character="{{pos.ch}}">{{friendlyLine}}</td>
<td class="line-icon">
<i class="{{iconClass}}"></i>
</td>
<td class="line-text">{{message}}{{{htmlMessage}}}</td>
<td>
<button class="btn btn-mini table-copy-err-button ph-copy-problem" title="{{Strings.COPY_ERROR}}"
data-message="{{message}}">
<i class="fa-solid fa-copy ph-copy-problem"></i>
</button>
</td>
<td>
{{#fix.id}}
<button class="btn btn-mini table-fix-err-button ph-fix-problem"
data-fixid="{{fix.id}}">
{{Strings.FIX}}
</button>
{{/fix.id}}
</td>
<td class="line-snippet">{{codeSnippet}}</td>
</tr>
{{/results}}
{{/reportList}}
</tbody>
</table>