Skip to content
Snippets Groups Projects
full-item-page.component.html 889 B
Newer Older
Lotte Hofstede's avatar
Lotte Hofstede committed
<div class="item-page" *ngIf="item.hasSucceeded | async">
    <ds-item-page-title-field [item]="item.payload | async"></ds-item-page-title-field>

    <div class="simple-view-link">
        <a class="btn btn-outline-primary col-4" [routerLink]="['/items/' + (item.payload | async)?.id]">
            {{"item.page.link.simple" | translate}}
        </a>
    </div>

Lotte Hofstede's avatar
Lotte Hofstede committed
    <table class="table table-responsive table-striped">
        <tbody>
            <tr *ngFor="let metadatum of (metadata | async)">
                  <td>{{metadatum.key}}</td>
                  <td>{{metadatum.value}}</td>
                  <td>{{metadatum.language}}</td>
            </tr>
        </tbody>
    </table>

    <ds-item-page-full-file-section [item]="item.payload | async"></ds-item-page-full-file-section>

    <ds-item-page-collections [item]="item.payload | async"></ds-item-page-collections>
Lotte Hofstede's avatar
Lotte Hofstede committed
</div>