2017-08-06 10:42:37 +02:00
|
|
|
<div class="fade-in list-entry" [ngClass]="{selected : selected}" (click)="select()">
|
|
|
|
|
|
|
|
<div class="row">
|
2018-07-05 20:44:12 +02:00
|
|
|
<div [ngClass]="[loginService.hasPermission(3) ? 'col-xs-10' : 'col-xs-11']">
|
2017-08-06 10:42:37 +02:00
|
|
|
<span>
|
2018-07-01 11:33:03 +02:00
|
|
|
<a>{{war.title}}</a>
|
2017-08-06 10:42:37 +02:00
|
|
|
</span>
|
|
|
|
<br>
|
2017-09-03 12:49:59 +02:00
|
|
|
<small>vom {{war.date | date: 'dd.MM.yyyy'}}</small>
|
2017-08-06 10:42:37 +02:00
|
|
|
</div>
|
|
|
|
|
2018-07-05 20:44:12 +02:00
|
|
|
<div *ngIf="loginService.hasPermission(3)"
|
|
|
|
class="interact-ico-container">
|
2018-07-10 19:57:18 +02:00
|
|
|
<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>
|
|
|
|
</div>
|