mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 19:43:04 +00:00
19 lines
610 B
HTML
19 lines
610 B
HTML
<table id="metadata" class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{{'item.edit.modify.overview.field'| translate}}</th>
|
|
<th scope="col">{{'item.edit.modify.overview.value'| translate}}</th>
|
|
<th scope="col">{{'item.edit.modify.overview.language'| translate}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<ng-container *ngFor="let mdEntry of metadata | keyvalue">
|
|
<tr *ngFor="let mdValue of mdEntry.value" class="metadata-row">
|
|
<td>{{mdEntry.key}}</td>
|
|
<td>{{mdValue.value}}</td>
|
|
<td>{{mdValue.language}}</td>
|
|
</tr>
|
|
</ng-container>
|
|
</tbody>
|
|
</table>
|