mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
21 lines
615 B
HTML
21 lines
615 B
HTML
<div class="container">
|
|
<h1>{{ 'admin.access-control.bulk-access.title' | translate }}</h1>
|
|
<ds-bulk-access-browse [listId]="listId"></ds-bulk-access-browse>
|
|
<div class="clearfix mb-3"></div>
|
|
<ds-bulk-access-settings #dsBulkSettings ></ds-bulk-access-settings>
|
|
|
|
<hr>
|
|
|
|
<div class="d-flex justify-content-end">
|
|
<button class="btn btn-outline-primary mr-3" (click)="reset()">
|
|
{{ 'access-control-cancel' | translate }}
|
|
</button>
|
|
<button class="btn btn-primary" [disabled]="!canExport()" (click)="submit()">
|
|
{{ 'access-control-execute' | translate }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|