opt-cc/static/src/app/statistic/war-list/war-item.component.html

20 lines
536 B
HTML

<div class="fade-in list-entry" [ngClass]="{selected : selected}" (click)="select()">
<div class="row">
<div class="col-xs-9">
<span>
<a style="font-size: 22px;">{{war.title}}</a>
</span>
<br>
<small>vom {{war.date | date: 'dd.MM.yyyy'}}</small>
</div>
<div class="col-xs-3" *ngIf="loginService.hasPermission(3)">
<span (click)="delete(); $event.stopPropagation()"
title="Löschen"
class="glyphicon glyphicon-trash trash"></span>
</div>
</div>
</div>