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

17 lines
842 B
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}}
<i class="fa fa-share-alt text-muted" *ngIf="c.organizationId" title="{{'shared' | i18n}}"></i>
<i class="fa fa-paperclip text-muted" *ngIf="c.hasAttachments" title="{{'attachments' | i18n}}"></i>
</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>