- 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
30 lines
1.2 KiB
HTML
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 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>
|
|
new character
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |