bitwarden-estensione-browser/src/popup/components/ciphers-list.component.html

23 lines
1.1 KiB
HTML
Raw Normal View History

2019-02-21 22:53:57 +01:00
<a *ngFor="let c of ciphers" (click)="selectCipher(c)" (dblclick)="doubleSelectCipher(c)" href="#" appStopClick
title="{{title}} - {{c.name}}" class="box-content-row box-content-row-flex">
2018-04-05 23:27:31 +02:00
<div class="row-main">
<app-vault-icon [cipher]="c"></app-vault-icon>
2018-04-10 04:25:03 +02:00
<div class="row-main-content">
<span class="text">
{{c.name}}
2019-10-08 23:04:44 +02:00
<ng-container *ngIf="c.organizationId">
<i class="fa fa-share-alt text-muted" title="{{'shared' | i18n}}" aria-hidden="true"></i>
<span class="sr-only">{{'shared' | i18n}}</span>
</ng-container>
<ng-container *ngIf="c.hasAttachments">
<i class="fa fa-paperclip text-muted" title="{{'attachments' | i18n}}" aria-hidden="true"></i>
<span class="sr-only">{{'attachments' | i18n}}</span>
</ng-container>
2018-04-10 04:25:03 +02:00
</span>
<span class="detail">{{c.subTitle}}</span>
</div>
2018-04-05 23:27:31 +02:00
</div>
2018-04-11 18:00:55 +02:00
<app-action-buttons [cipher]="c" [showView]="showView" (onView)="viewCipher(c)" class="action-buttons">
</app-action-buttons>
2018-04-05 23:27:31 +02:00
</a>