Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
985 B

<div class="events">
<div class="event row no-gutters" *ngFor="let assetEvent of assetEvents | async; trackBy: trackByEvent">
<div class="col-auto">
<img class="user-picture" title="{{assetEvent.event.actor | sqxUserNameRef}}" [src]="assetEvent.event.actor | sqxUserPictureRef">
</div>
<div class="col pl-2">
<div class="event-message">
<span class="event-actor user-ref mr-1">{{assetEvent.event.actor | sqxUserNameRef:null}}</span>
<span [innerHTML]="assetEvent.event | sqxHistoryMessage"></span>
</div>
<div class="event-created">{{assetEvent.event.created | sqxFromNow}}</div>
<ng-container *ngIf="assetEvent.canDownload">
<a class="event-load force" [href]="asset | sqxAssetUrl:assetEvent.version" sqxExternalLink="noicon">{{ 'assets.downloadVersion' | sqxTranslate }}</a>
</ng-container>
</div>
</div>
</div>