mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
70 lines
3.1 KiB
HTML
70 lines
3.1 KiB
HTML
<div class="d-flex flex-row">
|
|
<h2 class="item-page-title-field mr-auto">
|
|
{{'orgunit.page.titleprefix' | translate}}<ds-metadata-values [mdValues]="object?.allMetadata(['organization.legalName'])"></ds-metadata-values>
|
|
</h2>
|
|
<div class="pl-2">
|
|
<ds-dso-page-version-button (newVersionEvent)="onCreateNewVersion()" [dso]="object"
|
|
[tooltipMsgCreate]="'item.page.version.create'"
|
|
[tooltipMsgHasDraft]="'item.page.version.hasDraft'"></ds-dso-page-version-button>
|
|
<ds-dso-page-edit-button [pageRoute]="itemPageRoute" [dso]="object" [tooltipMsg]="'orgunit.page.edit'"></ds-dso-page-edit-button>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-4">
|
|
<ds-metadata-field-wrapper [hideIfNoTextContent]="false">
|
|
<ds-thumbnail [thumbnail]="object?.thumbnail | async"
|
|
[defaultImage]="'assets/images/orgunit-placeholder.svg'"
|
|
[alt]="'thumbnail.orgunit.alt'"
|
|
[placeholder]="'thumbnail.orgunit.placeholder'"
|
|
>
|
|
</ds-thumbnail>
|
|
</ds-metadata-field-wrapper>
|
|
<ds-generic-item-page-field [item]="object"
|
|
[fields]="['organization.foundingDate']"
|
|
[label]="'orgunit.page.dateestablished'">
|
|
</ds-generic-item-page-field>
|
|
<ds-generic-item-page-field [item]="object"
|
|
[fields]="['organization.address.addressLocality']"
|
|
[label]="'orgunit.page.city'">
|
|
</ds-generic-item-page-field>
|
|
<ds-generic-item-page-field [item]="object"
|
|
[fields]="['organization.adress.addressCountry']"
|
|
[label]="'orgunit.page.country'">
|
|
</ds-generic-item-page-field>
|
|
<ds-generic-item-page-field [item]="object"
|
|
[fields]="['dc.identifier']"
|
|
[label]="'orgunit.page.id'">
|
|
</ds-generic-item-page-field>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6">
|
|
<ds-related-items
|
|
[parentItem]="object"
|
|
[relationType]="'isPublicationOfOrgUnit'"
|
|
[label]="'relationships.isPublicationOf' | translate">
|
|
</ds-related-items>
|
|
<ds-generic-item-page-field [item]="object"
|
|
[fields]="['dc.description']"
|
|
[label]="'orgunit.page.description'">
|
|
</ds-generic-item-page-field>
|
|
<div>
|
|
<a class="btn btn-outline-primary" [routerLink]="[itemPageRoute + '/full']">
|
|
{{"item.page.link.full" | translate}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="mt-5 w-100">
|
|
<ds-tabbed-related-entities-search [item]="object"
|
|
[relationTypes]="[{
|
|
label: 'isOrgUnitOfPerson',
|
|
filter: 'isOrgUnitOfPerson',
|
|
configuration: 'person-relationships'
|
|
},
|
|
{
|
|
label: 'isOrgUnitOfProject',
|
|
filter: 'isOrgUnitOfProject',
|
|
configuration: 'project-relationships'
|
|
}]">
|
|
</ds-tabbed-related-entities-search>
|
|
</div>
|
|
</div>
|