2017-05-17 15:55:22 +02:00
|
|
|
<div class="fade-in list-entry" [ngClass]="{selected : selected}" (click)="select()">
|
2017-05-10 11:04:06 +02:00
|
|
|
|
|
|
|
<div class="row">
|
2017-08-12 23:13:39 +02:00
|
|
|
<div class="col-xs-8">
|
2017-05-10 11:04:06 +02:00
|
|
|
<span>
|
|
|
|
<a>{{squad.name}}</a>
|
|
|
|
</span>
|
|
|
|
<br>
|
2019-08-04 13:16:11 +02:00
|
|
|
<small *ngIf="squad.fraction == 'OPFOR'">{{fraction.ARF}}</small>
|
|
|
|
<small *ngIf="squad.fraction == 'BLUFOR'">{{fraction.SWORD}}</small>
|
2017-05-10 11:04:06 +02:00
|
|
|
</div>
|
2017-05-16 20:06:00 +02:00
|
|
|
|
2017-08-12 23:13:39 +02:00
|
|
|
<div class="col-xs-4">
|
2017-09-03 12:49:59 +02:00
|
|
|
<img src="{{imageSrc}}" height="50px" class="squad-list-preview">
|
2018-10-03 15:22:14 +02:00
|
|
|
<span (click)="delete(); $event.stopPropagation()"
|
|
|
|
matTooltip="{{'squad.modify.delete' | translate}}"
|
|
|
|
class="glyphicon glyphicon-trash trash"></span>
|
2017-05-16 20:06:00 +02:00
|
|
|
</div>
|
2017-05-10 11:04:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|