mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
<ds-metadata-field-wrapper [label]="label | translate">
|
||
<div class="file-section row" *ngFor="let file of (bitstreams$ | async); let last=last;">
|
||
<div class="col-3">
|
||
<ds-thumbnail [thumbnail]="(file.thumbnail | async)?.payload"></ds-thumbnail>
|
||
</div>
|
||
<div class="col-7">
|
||
<dl class="row">
|
||
<dt class="col-md-4">{{"item.page.filesection.name" | translate}}</dt>
|
||
<dd class="col-md-8">{{file.name}}</dd>
|
||
|
||
<dt class="col-md-4">{{"item.page.filesection.size" | translate}}</dt>
|
||
<dd class="col-md-8">{{(file.sizeBytes) | dsFileSize }}</dd>
|
||
|
||
|
||
<dt class="col-md-4">{{"item.page.filesection.format" | translate}}</dt>
|
||
<dd class="col-md-8">{{(file.format | async)?.payload?.description}}</dd>
|
||
|
||
|
||
<dt class="col-md-4">{{"item.page.filesection.description" | translate}}</dt>
|
||
<dd class="col-md-8">{{file.firstMetadataValue("dc.description")}}</dd>
|
||
</dl>
|
||
</div>
|
||
<div class="col-2">
|
||
<a [href]="file._links.content.href" [download]="file.name">
|
||
{{"item.page.filesection.download" | translate}}
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</ds-metadata-field-wrapper>
|