mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
16 lines
584 B
HTML
16 lines
584 B
HTML
<div class="container">
|
|
<h1>{{ ('browse.taxonomy_' + vocabularyName + '.title') | translate }}</h1>
|
|
<div class="mb-3">
|
|
<ds-vocabulary-treeview [vocabularyOptions]=vocabularyOptions
|
|
[multiSelect]="true"
|
|
(select)="onSelect($event)"
|
|
(deselect)="onDeselect($event)">
|
|
</ds-vocabulary-treeview>
|
|
</div>
|
|
<a class="btn btn-primary"
|
|
[routerLink]="['/search']"
|
|
[queryParams]="queryParams"
|
|
[queryParamsHandling]="'merge'">
|
|
{{ 'browse.taxonomy.button' | translate }}</a>
|
|
</div>
|