Files
pathfinder/public/templates/tooltip/character_info.html
Mark Friedrich 17851804e7 - new map option for "preserve signatures" after system delete, closed #814
- fixed a bug where deleted systems reappear on map (caching problem)
2019-07-20 09:10:40 +02:00

32 lines
1.2 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 class="pf-table-cell-ellipses-auto pf-table-cell-100">
<i class="fas fa-fw fa-circle pf-user-status {{createdStatusClass}}"></i>
{{created.character.name}}
</td>
<td>
<div class="well well-sm well-text-number 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 class="pf-table-cell-ellipses-auto pf-table-cell-100">
<i class="fas fa-fw fa-circle pf-user-status {{updatedStatusClass}}"></i>
{{updated.character.name}}
</td>
<td>
<div class="well well-sm well-text-number text-center"><i class="fas fa-fw fa-pen"></i>&nbsp;{{updatedTime}}</div>
</td>
</tr>
</tbody>
</table>
</div>