- new role management section for corporations admins - added column "nullable" detection within /setup page for DB diff - added new map icon options options to the map add/edit dialog - refactored setup() method for all tables with static data - fixed broken map icons - fixed broken "drag/select" for systems on map - fixed new "map resize" event for non Chrome browsers - multiple minor improvements and fixes...
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
<table id="{{id}}" 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">
|
|
<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> |