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 pathhostile.hbs
More file actions
28 lines (28 loc) · 1.34 KB
/
Copy pathhostile.hbs
File metadata and controls
28 lines (28 loc) · 1.34 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
<tr id="hostile-{{characterId}}" class="hostile {{#if is_faded}}faded{{/if}}">
<td class="ship-icon">{{{shipIcon}}}</td>
<td class="name"><a href="javascript:CCPEVE.showInfo(1377, {{characterId}});">{{characterName}}</a></td>
<td class="alliance">
{{#if allianceName}}
<a href="javascript:CCPEVE.showInfo(16159, {{allianceId}});"><{{allianceName}}></a>
{{else}}
No Alliance
{{/if}}
</td>
<td class="ship-type" onClick="UIPanels.updateHostileDetailsPanel('{{characterId}}');">
{{#if is_docked}}
<i class="fa fa-university"></i> Docked
{{else}}
{{#if shipTypeId}}
<i class="fa fa-fighter-jet"></i> <a href="javascript:CCPEVE.showInfo({{shipTypeId}});">{{shipType}}</a>
{{else}}
Non Visual
{{/if}}
{{/if}}
</td>
<td class="system"><a href="javascript:CCPEVE.showInfo(5,{{systemId}});">{{systemName}}</a></td>
<td class="reported-at"><a title="Reported by {{reporterName}}">{{format_ts_short ts}}</a></td>
<td class="actions">
<a title="Set Destination" onClick="CCPEVE.setDestination({{systemId}})"><i class="fa fa-map-marker" title="Set Destination"></i></a>
<a title="Killboard: {{characterName}}" target="_blank" href="https://zkillboard.com/character/{{characterId}}/"><i class="fa fa-crosshairs" title="Killboard"></i></a>
</td>
</tr>