2018-01-24 04:21:14 +01:00
|
|
|
<div class="header header-search">
|
|
|
|
<div class="search">
|
2018-01-24 22:32:24 +01:00
|
|
|
<input type="search" placeholder="{{'searchVault' | i18n}}" id="search" />
|
2018-01-24 04:21:14 +01:00
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
2018-01-24 23:41:57 +01:00
|
|
|
<a href="" title="{{'addItem' | i18n}}" appStopClick (click)="addCipher()">
|
|
|
|
<i class="fa fa-plus fa-lg"></i>
|
|
|
|
</a>
|
2018-01-24 04:21:14 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="list">
|
2018-01-27 19:07:36 +01:00
|
|
|
<a *ngFor="let cipher of ciphers" appStopClick (click)="cipherClicked(cipher)"
|
|
|
|
href="#" title="{{'viewItem' | i18n}}">
|
|
|
|
<app-vault-icon [cipher]="cipher"></app-vault-icon>
|
|
|
|
<span class="text">
|
|
|
|
{{cipher.name}}
|
|
|
|
<i class="fa fa-share-alt text-muted" *ngIf="cipher.organizationId"
|
|
|
|
title="{{'shared' | i18n}}"></i>
|
|
|
|
<i class="fa fa-paperclip text-muted" *ngIf="cipher.attachments"
|
|
|
|
title="{{'attachments' | i18n}}"></i>
|
|
|
|
</span>
|
|
|
|
<span class="detail">{{cipher.subTitle}}</span>
|
|
|
|
</a>
|
2018-01-24 04:21:14 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
2018-01-26 00:00:03 +01:00
|
|
|
<button (click)="addCipher()" class="block primary" title="{{'addItem' | i18n}}">
|
|
|
|
<i class="fa fa-plus fa-lg"></i>
|
|
|
|
</button>
|
2018-01-24 04:21:14 +01:00
|
|
|
</div>
|