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 pathsystem_info.hbs
More file actions
75 lines (65 loc) · 1.96 KB
/
Copy pathsystem_info.hbs
File metadata and controls
75 lines (65 loc) · 1.96 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<div class="details">
<h4>Solar System Details</h4>
<dl>
<dt>System</dt>
<dd class="system">{{ name }}</dd>
<dt>Region</dt>
<dd class="region">{{ region }}</dd>
{{#if wormhole_class}}
<dt>WH Class</dt>
<dd class="wormhole-class">C{{ wormhole_class }}</dd>
{{else}}
<dt>Security Class</dt>
<dd class="security-class">{{ security_class }}</dd>
<dt>Security Level</dt>
<dd class="security-level">{{ security }}</dd>
{{/if}}
<dt>Last Report</dt>
<dd class="last-report">{{ last_report }}</dd>
{{#if hostiles}}
<dt>Hostiles</dt>
<dd class="hostiles">
{{#each hostiles}}
<div class="hostile" onClick="UIPanels.updateHostileDetailsPanel('{{characterId}}');">
{{#if is_faded}}
<i class="fa fa-clock-o" title="Faded"></i> {{characterName}}
{{else}}
<i class="fa fa-fighter-jet" title="Active"></i> {{characterName}}
{{/if}}
</div>
{{/each}}
</dd>
{{/if}}
{{#if jumps}}
<dt>Gates</dt>
<dd class="gates">
<ul>
{{#each jumps}}
<li><i class="fa fa-chevron-right"></i>{{name}}</li>
{{/each}}
</ul>
</dd>
{{/if}}
{{#if active_advisories}}
<dt>Advisories<dt>
<dd class="advisories">
<ul>
{{#each active_advisories }}
<li><i class="fa fa-{{ui_icon type}}"></i> {{ type }}</li>
{{/each}}
</ul>
</dd>
{{/if}}
</dl>
{{#if allow_report }}
<h4 class="report-advisory">Report Advisory</h4>
{{#each advisories}}
<a class="btn {{#if present}}present{{/if}}" onclick="reportAdvisory(this, '{{ systemId }}', '{{ type }}')" title="{{ type }}"><i class="fa fa-{{ui_icon type}}"></i></a>
{{/each}}
{{/if}}
<h4 class="external">External Resources</h4>
<a class="btn" target="_blank" href="http://evemaps.dotlan.net/map/{{ region }}/{{ name }}#const">
Dotlan
<i class="fa fa-external-link-square"></i>
</a>
</div>