Files
pathfinder/public/templates/tooltip/character_switch.html
Mark Friedrich 57f6d4d29b - full refactoring of the "signature module" #679
- improved "character info" tooltips in e.g. signature Table
- improved performance with the live time counters in e.g. signature table
- fixed a bug where mass delete signatures on a system sometimes failed
- fixed a bug where "signature type" sometimes not get saved correctly
- fixed a bug where "responsive table columns" were not shown on larger screens
2018-08-31 19:11:39 +02:00

30 lines
1.2 KiB
HTML

<div class="{{popoverClass}}">
<table class="table table-condensed">
<tbody>
{{#otherCharacters}}
<tr>
<td><img src="{{image}}" alt="{{name}}"></td>
<td>{{name}}</td>
<td class="text-right text-nowrap">
<a class="btn btn-sm btn-default" href="{{routes.ssoLogin}}?characterId={{id}}" target="_blank" title="new tab" rel="noopener">
<i class="fas fa-fw fa-external-link-alt"></i>
</a>
<a class="btn btn-sm btn-primary" href="{{routes.ssoLogin}}?characterId={{id}}&tabId={{browserTabId}}" target="_self" title="switch&nbsp;character">
<i class="fas fa-fw fa-exchange-alt"></i>
</a>
</td>
</tr>
{{/otherCharacters}}
<tr>
<td></td>
<td>add more</td>
<td class="text-right text-nowrap">
<a class="btn btn-sm btn-success" href="{{routes.ssoLogin}}?characterId=-1&tabId={{browserTabId}}" target="_self">
<i class="fas fa-fw fa-user-plus"></i>&nbsp;&nbsp;
new character
</a>
</td>
</tr>
</tbody>
</table>
</div>