mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00

Add the Item Withdraw and Reistate action Add the make Item Private and Public action Add the Permanently Delete action
16 lines
523 B
HTML
16 lines
523 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>
|
|
<tr *ngFor="let metadatum of metadata" class="metadata-row">
|
|
<td>{{metadatum.key}}</td>
|
|
<td>{{metadatum.value}}</td>
|
|
<td>{{metadatum.language}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |