- added new "select connection" feature to map - ctrl + click for multiselect, closed #174 - added new "wormhole type" table to "Jump info" dialog, closed #174 - added new re-order drag&drop feature for pannels, #470 closed #234 - fixed PHP-Doc comments - added @throw statements - fixed some Javascript memory leaks with infinite counters - updated "Peity jQuery plugin" `3.2.0` -> `3.2.1`
108 lines
4.8 KiB
HTML
108 lines
4.8 KiB
HTML
<div class="pf-module-head">
|
|
<h5 class="pull-right" data-toggle="tooltip" data-placement="top" data-container="body" title="alias">
|
|
{{#system.alias}}
|
|
{{system.alias}}
|
|
{{/system.alias}}
|
|
{{^system.alias}}
|
|
{{system.name}}
|
|
{{/system.alias}}
|
|
</h5>
|
|
|
|
<h5 class="pf-module-handler-drag"></h5>
|
|
<h5>
|
|
<span data-toggle="tooltip" data-placement="top" data-container="body" title="system">{{system.name}}</span>
|
|
{{#system.locked}}
|
|
<i class="fa fa-fw fa-lock"></i>
|
|
{{/system.locked}}
|
|
<i class="fa fa-fw fa-angle-double-right"></i>
|
|
</h5>
|
|
<h5><a href="javascript:void(0);" data-url="{{ajaxConstellationInfoUrl}}/{{system.constellation.id}}" class="{{systemConstellationLinkClass}} popup-ajax" title="constellation">{{system.constellation.name}}</a> <i class="fa fa-fw fa-angle-double-right"></i></h5>
|
|
<h5><span class="{{systemRegionLinkClass}}" data-toggle="tooltip" data-placement="top" data-container="body" title="region">{{system.region.name}}</span> <i class="fa fa-fw fa-angle-double-right"></i></h5>
|
|
<h5><span class="{{systemTypeLinkClass}}" data-toggle="tooltip" data-placement="top" data-container="body" title="type">{{systemTypeName}}</span></h5>
|
|
|
|
<a href="http://evemaps.dotlan.net/system/{{system.name}}" target="_blank">
|
|
<div data-toggle="tooltip" data-placement="top" data-container="body" title="dotlan" class="pf-icon pf-icon-dotlan"></div>
|
|
</a>
|
|
<a href="http://wh.pasta.gg/{{system.name}}" target="_blank">
|
|
<div data-toggle="tooltip" data-placement="top" data-container="body" title="wormhol" class="pf-icon pf-icon-wormhol-es"></div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
{{! info text ================================================================================================ }}
|
|
<div class="col-xs-12 col-sm-7">
|
|
<div class="pf-dynamic-area pf-system-info-description-area">
|
|
<i class="fa fa-fw fa-lg fa-pencil pull-right pf-module-icon-button {{descriptionButtonClass}}" data-toggle="tooltip" data-container="body" title="edit description"></i>
|
|
|
|
<div class="{{tableToolsActionClass}}">
|
|
<a href="#" class="{{descriptionTextareaClass}}"></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{! info table ================================================================================================ }}
|
|
<div class="col-xs-12 col-sm-5">
|
|
|
|
<span data-toggle="tooltip" data-placement="top" data-container="body" title="status" data-status="{{systemStatusId}}" class="label center-block {{statusInfoClass}} {{systemStatusClass}}">
|
|
{{systemStatusLabel}}
|
|
</span>
|
|
|
|
|
|
<div class="pf-dynamic-area">
|
|
<table class="table table-condensed {{tableClass}}">
|
|
<thead>
|
|
<tr>
|
|
<th class="pf-table-cell-20 text-right pf-help {{nameInfoClass}}">
|
|
<i class="fa fa-fw fa-question-circle"></i>
|
|
</th>
|
|
<th>Name</th>
|
|
<th class="text-right">{{system.name}}</th>
|
|
<th class="pf-table-cell-20 text-right {{securityClass}}">{{system.security}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td></td>
|
|
<td>Security</td>
|
|
<td></td>
|
|
<td class="text-right {{trueSecClass}}">{{trueSec}}</td>
|
|
</tr>
|
|
{{#effectName}}
|
|
<tr>
|
|
<td class="text-right pf-help {{effectInfoClass}}">
|
|
<i class="fa fa-fw fa-question-circle"></i>
|
|
</td>
|
|
<td>Effect</td>
|
|
<td class="text-right pf-font-capitalize">{{effectName}}</td>
|
|
<td class="text-right"><i class="fa fa-fw fa-square pf-system-effect {{effectClass}}"></i></td>
|
|
</tr>
|
|
{{/effectName}}
|
|
{{#system.statics}}
|
|
<tr>
|
|
<td class="text-right pf-help {{wormholePrefixClass}}{{name}}">
|
|
<i class="fa fa-fw fa-question-circle"></i>
|
|
</td>
|
|
<td>Static</td>
|
|
<td class="text-right">{{name}}</td>
|
|
<td class="text-right {{class}}">{{security}}</td>
|
|
</tr>
|
|
{{/system.statics}}
|
|
{{#shatteredWormholeInfo}}
|
|
<tr>
|
|
<td class="text-right pf-help"></td>
|
|
<td>Shattered System</td>
|
|
<td class="text-right pf-font-capitalize {{securityClass}}">Unknown statics</td>
|
|
<td class="text-right"></td>
|
|
</tr>
|
|
{{/shatteredWormholeInfo}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|