2018-07-29 20:59:09 +02:00
|
|
|
<div class='war-item' [ngClass]="{selected : selected}" (click)="select()">
|
|
|
|
<div class="war-item-box">
|
|
|
|
<div style="position:relative; z-index:10;">
|
|
|
|
<div class="select-indicator-battle"></div>
|
2017-08-06 10:42:37 +02:00
|
|
|
</div>
|
2018-07-29 20:59:09 +02:00
|
|
|
<span class="war-title">
|
|
|
|
◦ {{war.title}}
|
|
|
|
</span>
|
|
|
|
<div class="war-detail">vom {{war.date | date: 'dd.MM.yyyy'}}</div>
|
|
|
|
</div>
|
2017-08-06 10:42:37 +02:00
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
<div *ngIf="loginService.hasPermission(3)"
|
|
|
|
class="interact-ico-container">
|
|
|
|
<button mat-icon-button
|
|
|
|
class="add-btn"
|
|
|
|
matTooltip="Bearbeiten"
|
|
|
|
(click)="edit(); $event.stopPropagation()">
|
|
|
|
<mat-icon svgIcon="edit"></mat-icon>
|
|
|
|
</button>
|
|
|
|
<button mat-icon-button
|
|
|
|
class="add-btn"
|
|
|
|
matTooltip="Löschen"
|
|
|
|
(click)="delete(); $event.stopPropagation()">
|
|
|
|
<mat-icon svgIcon="delete"></mat-icon>
|
|
|
|
</button>
|
2017-08-06 10:42:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|