Files
pathfinder/public/templates/tooltip/character_info.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

32 lines
1.1 KiB
HTML

<div class="{{popoverClass}}">
<table class="table table-condensed">
<tbody>
<tr>
<td>
<img src="{{ccpImageServerUrl}}/Character/{{created.character.id}}_32.jpg" alt="{{created.character.name}}">
</td>
<td>
<i class="fas fa-fw fa-circle pf-user-status {{createdStatusClass}}"></i>
{{created.character.name}}
</td>
<td>
<div class="well well-sm text-center"><i class="fas fa-fw fa-plus"></i>&nbsp;{{createdTime}}</div>
</td>
</tr>
<tr>
<td>
<img src="{{ccpImageServerUrl}}/Character/{{updated.character.id}}_32.jpg" alt="{{updated.character.name}}">
</td>
<td>
<i class="fas fa-fw fa-circle pf-user-status {{updatedStatusClass}}"></i>
{{updated.character.name}}
</td>
<td>
<div class="well well-sm text-center"><i class="fas fa-fw fa-pen"></i>&nbsp;{{updatedTime}}</div>
</td>
</tr>
</tbody>
</table>
</div>