1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-10 06:08:34 +02:00
bitwarden-browser/src/app/vault/collections.component.html

52 lines
2.6 KiB
HTML
Raw Normal View History

2018-06-12 19:08:47 +02:00
<div class="modal fade">
<div class="modal-dialog">
<form class="modal-content" #form (ngSubmit)="submit()" [appApiAction]="formPromise">
<div class="modal-header">
<h2 class="modal-title">
{{'collections' | i18n}}
<small *ngIf="cipher">{{cipher.name}}</small>
</h2>
<button type="button" class="close" data-dismiss="modal" attr.aria-label="{{'close' | i18n}}">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<p>{{'collectionsDesc' | i18n}}</p>
<div class="d-flex">
<h3>{{'collections' | i18n}}</h3>
<div class="ml-auto d-flex" *ngIf="collections && collections.length">
2018-07-18 05:21:23 +02:00
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
2018-06-12 19:08:47 +02:00
{{'selectAll' | i18n}}
</button>
2018-07-18 05:21:23 +02:00
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
2018-06-12 19:08:47 +02:00
{{'unselectAll' | i18n}}
</button>
</div>
2018-06-12 19:08:47 +02:00
</div>
<div *ngIf="!collections || !collections.length">
{{'noCollectionsInList' | i18n}}
</div>
<table class="table table-hover table-list mb-0" *ngIf="collections && collections.length">
2018-06-12 19:08:47 +02:00
<tbody>
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
<td class="table-list-checkbox">
<input type="checkbox" [(ngModel)]="c.checked" name="Collection[{{i}}].Checked">
</td>
<td>
<span appStopProp>{{c.name}}</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
2018-07-18 05:21:23 +02:00
<button type="submit" class="btn btn-primary" title="{{'save' | i18n}}" [disabled]="form.loading">
2018-06-12 19:08:47 +02:00
<i class="fa fa-save fa-lg fa-fw" [hidden]="form.loading"></i>
2018-07-18 05:15:15 +02:00
<i class="fa fa-spinner fa-spin fa-lg fa-fw" [hidden]="!form.loading" title="{{'loading' | i18n}}"></i>
2018-06-12 19:08:47 +02:00
</button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal" title="{{'cancel' | i18n}}">{{'cancel' | i18n}}</button>
</div>
</form>
</div>
</div>