- 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
32 lines
1.1 KiB
HTML
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> {{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> {{updatedTime}}</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|