mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
34 lines
1.4 KiB
HTML
34 lines
1.4 KiB
HTML
|
<bit-section>
|
||
|
<bit-section-header>
|
||
|
<h2 bitTypography="h6">{{ "itemDetails" | i18n }}</h2>
|
||
|
</bit-section-header>
|
||
|
<bit-card>
|
||
|
<div class="tw-pb-2 tw-mb-4 tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300">
|
||
|
<label class="tw-block tw-w-full tw-mb-1 tw-text-xs tw-text-muted tw-select-none">
|
||
|
{{ "itemName" | i18n }}
|
||
|
</label>
|
||
|
<input readonly bitInput type="text" [value]="cipher.login.username" aria-readonly="true" />
|
||
|
</div>
|
||
|
|
||
|
<div *ngIf="cipher.collectionIds || cipher.organizationId || cipher.folderId">
|
||
|
<div *ngIf="!cipher.organizationId" [ngClass]="{ 'tw-mb-3': cipher.collectionIds }">
|
||
|
<i class="bwi bwi-user bwi-lg bwi-fw"></i> {{ "ownerYou" | i18n }}
|
||
|
</div>
|
||
|
<div
|
||
|
*ngIf="cipher.organizationId && organization"
|
||
|
[ngClass]="{ 'tw-mb-3': cipher.collectionIds }"
|
||
|
>
|
||
|
<i class="bwi bwi-business bwi-lg bwi-fw"></i> {{ organization.name }}
|
||
|
</div>
|
||
|
<div *ngIf="cipher.collectionIds && collections" [ngClass]="{ 'tw-mb-3': cipher.folderId }">
|
||
|
<h3 *ngFor="let collection of collections">
|
||
|
<i class="bwi bwi-collection bwi-lg bwi-fw"></i> {{ collection.name }}
|
||
|
</h3>
|
||
|
</div>
|
||
|
<div *ngIf="cipher.folderId && folder">
|
||
|
<i class="bwi bwi-folder bwi-lg bwi-fw"></i> {{ folder.name }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</bit-card>
|
||
|
</bit-section>
|