mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
18 lines
902 B
HTML
18 lines
902 B
HTML
<form [formGroup]="saveViewConfigForm" class="needs-validation" novalidate (ngSubmit)="save()">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title" id="modal-basic-title" i18n>Save current view</h4>
|
|
<button type="button" class="close" aria-label="Close" (click)="cancel()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<app-input-text i18n-title title="Name" formControlName="name"></app-input-text>
|
|
<app-input-check i18n-title title="Show in side bar" formControlName="showInSideBar"></app-input-check>
|
|
<app-input-check i18n-title title="Show on dashboard" formControlName="showOnDashboard"></app-input-check>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-outline-dark" (click)="cancel()" i18n>Cancel</button>
|
|
<button type="submit" class="btn btn-primary" i18n>Save</button>
|
|
</div>
|
|
</form>
|