This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscan.hbs
More file actions
39 lines (38 loc) · 1.48 KB
/
Copy pathscan.hbs
File metadata and controls
39 lines (38 loc) · 1.48 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
<div class="scan">
<table class="description" onclick="ScanList.toggleCollapse(this);">
<tr>
<td class="reported-by"><a href="javascript:CCPEVE.showInfo(1377, {{reporterId}});">{{reporterName}}</a> shared scan results</td>
<td class="system"><a href="javascript:CCPEVE.showInfo(5,{{systemId}});">{{systemName}}</a></td>
<td class="actions">
<a title="Permalink" target="_blank" href="/scans/{{_id}}/"><i class="fa fa-external-link-square" title="Scan Permalink"></i></a>
</td>
<td class="reported-at">{{time}}</td>
</tr>
</table>
<div class="results-container collapsible">
<ul class="actions">
<li><a class="btn" onclick="scanFilter(this, 'grid');">On Grid</a></li>
<li><a class="btn" onclick="scanFilter(this, 'offgrid');">Off Grid</a></li>
</ul>
<div class="scan-classes">
{{#each shipClasses}}
<div class="result">
<span class="ship-class">{{count}}x <b>{{shipClass}}</b></span>
</div>
{{/each}}
</div>
<div class="type-classes">
{{#each shipTypes}}
<div class="result">
<span class="ship-type" onclick="ScanList.toggleCollapse(this)">{{count}}x <b>{{shipType}}</b></span>
{{#each details}}
<div class="details-container collapsible">
<span class="ship-name">{{shipName}}</span>
<span class="distance">{{distance}}</span>
</div>
{{/each}}
</div>
{{/each}}
</div>
</div>
</div>