-----------------------
yes, it can be done there (make a theme !), I did this for a fast preview while checking out our previous modifications (DSpace 5.10) to migrate to DSpace 7.x .
Also understand that this is not working for sort of wildcards "dc.contributor.*" e.g.
Our authors are in
dcterms.creator, so this renders ALL of them at once in a list :
<div style="word-break: break-word;display: inline-block;" *ngFor="let authors of object.metadata['dcterms.creator']| keyvalue">
<a href="/browse/author?value={{authors.value.value}}" style="border:1px solid #f0f0f0;border-radius:4px;background-color:#f0f0f0;margin:2px;display: inline-block;">{{ authors.value.value}}</a>
</div>
Better do it in a component , so !
Michael