mirror of
https://github.com/bitwarden/browser
synced 2026-01-13 22:13:24 +00:00
39 lines
1.9 KiB
HTML
39 lines
1.9 KiB
HTML
<div class="container page-content">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
<app-org-vault-groupings [showFolders]="false" [showFavorites]="false" [showTrash]="true"
|
|
(onAllClicked)="clearGroupingFilters()" (onCipherTypeClicked)="filterCipherType($event)"
|
|
(onCollectionClicked)="filterCollection($event.id)" (onSearchTextChanged)="filterSearchText($event)"
|
|
(onTrashClicked)="filterDeleted()">
|
|
</app-org-vault-groupings>
|
|
</div>
|
|
<div class="col-9">
|
|
<div class="page-header d-flex">
|
|
<h1>
|
|
{{'vault' | i18n}}
|
|
<small #actionSpinner [appApiAction]="ciphersComponent.actionPromise">
|
|
<ng-container *ngIf="actionSpinner.loading">
|
|
<i class="fa fa-spinner fa-spin text-muted" title="{{'loading' | i18n}}"
|
|
aria-hidden="true"></i>
|
|
<span class="sr-only">{{'loading' | i18n}}</span>
|
|
</ng-container>
|
|
</small>
|
|
</h1>
|
|
<button type="button" class="btn btn-outline-primary btn-sm ml-auto" (click)="addCipher()"
|
|
*ngIf="!deleted">
|
|
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>{{'addItem' | i18n}}
|
|
</button>
|
|
</div>
|
|
<app-org-vault-ciphers (onCipherClicked)="editCipher($event)"
|
|
(onAttachmentsClicked)="editCipherAttachments($event)" (onAddCipher)="addCipher()"
|
|
(onCollectionsClicked)="editCipherCollections($event)" (onEventsClicked)="viewEvents($event)"
|
|
(onCloneClicked)="cloneCipher($event)">
|
|
</app-org-vault-ciphers>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ng-template #attachments></ng-template>
|
|
<ng-template #cipherAddEdit></ng-template>
|
|
<ng-template #collections></ng-template>
|
|
<ng-template #eventsTemplate></ng-template>
|