1
0

41914: DSO list finished without item count

This commit is contained in:
Lotte Hofstede
2017-06-09 14:40:14 +02:00
parent bdf6d006e7
commit 3929a49c1d
21 changed files with 534 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
<a [routerLink]="['/items/' + item.id]">
{{item.findMetadata("dc.title")}}
</a>
<div>
<span *ngIf="item.filterMetadata(['dc.contributor.author', 'dc.creator', 'dc.contributor.*']);" class="item-list-authors">
<span *ngFor="let authorMd of item.filterMetadata(['dc.contributor.author', 'dc.creator', 'dc.contributor.*']); let last=last;">{{authorMd.value}}
<span *ngIf="!last">; </span>
</span>
</span>
(<span *ngIf="item.findMetadata('dc.publisher')" class="item-list-publisher">{{item.findMetadata("dc.publisher")}}, </span><span *ngIf="item.findMetadata('dc.date.issued')" class="item-list-date">{{item.findMetadata("dc.date.issued")}}</span>)
<div *ngIf="item.findMetadata('dc.description.abstract')" class="item-list-abstract">{{item.findMetadata("dc.description.abstract") | words : 35 : "..."}}</div>
</div>