Files
pathfinder/public/templates/tooltip/character_switch.html
Mark Friedrich ac36d5e074 - new role management for Corporation maps, closed #164
- 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...
2018-02-16 17:02:10 +01:00

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&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>