mirror of
https://github.com/bitwarden/web
synced 2026-02-13 23:14:08 +00:00
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<div class="container page-content">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
<app-org-vault-groupings [showFolders]="false" [showFavorites]="false" (onAllClicked)="clearGroupingFilters()" (onCipherTypeClicked)="filterCipherType($event)"
|
|
(onCollectionClicked)="filterCollection($event.id)" (onSearchTextChanged)="filterSearchText($event)">
|
|
</app-org-vault-groupings>
|
|
</div>
|
|
<div class="col-9">
|
|
<div class="page-header d-flex">
|
|
<h1>{{'vault' | i18n}}</h1>
|
|
<button type="button" class="btn btn-primary btn-sm ml-auto" (click)="addCipher()" appBlurClick>
|
|
<i class="fa fa-plus fa-fw"></i>{{'addItem' | i18n}}
|
|
</button>
|
|
</div>
|
|
<app-org-vault-ciphers (onCipherClicked)="editCipher($event)" (onAttachmentsClicked)="editCipherAttachments($event)" (onAddCipher)="addCipher()"
|
|
(onCollectionsClicked)="editCipherCollections($event)">
|
|
</app-org-vault-ciphers>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ng-template #attachments></ng-template>
|
|
<ng-template #cipherAddEdit></ng-template>
|
|
<ng-template #collections></ng-template>
|