mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-11 10:00:48 -05:00
13 lines
552 B
HTML
13 lines
552 B
HTML
<div class="form-row">
|
|
<div class="form-group col">
|
|
<label for="created_date">{{titleDate}}</label>
|
|
<input type="date" class="form-control" id="created_date" [(ngModel)]="dateValue" (change)="dateOrTimeChanged()">
|
|
</div>
|
|
<div class="form-group col" *ngIf="titleTime">
|
|
<label for="created_time">{{titleTime}}</label>
|
|
<input type="time" class="form-control" id="created_time" [(ngModel)]="timeValue" (change)="dateOrTimeChanged()">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- <small *ngIf="hint" class="form-text text-muted">{{hint}}</small> --> |