mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
57 lines
1.4 KiB
HTML
57 lines
1.4 KiB
HTML
<form (submit)="$event.preventDefault(); track()">
|
|
<div
|
|
class="dialog-content"
|
|
mat-dialog-content
|
|
>
|
|
<p>{{ T.F.TIME_TRACKING.D_TRACKING_REMINDER.UNTRACKED_TIME | translate }}</p>
|
|
<div class="time">{{ data.remindCounter$ | async | msToString: true }}</div>
|
|
|
|
<select-task
|
|
(taskChange)="onTaskChange($event)"
|
|
[isLimitToProject]="true"
|
|
[isIncludeDoneTasks]="true"
|
|
[initialTask]="selectedTask"
|
|
></select-task>
|
|
|
|
<div class="track-to-label">
|
|
@if (!isCreate) {
|
|
<span>{{ T.F.TIME_TRACKING.D_TRACKING_REMINDER.TRACK_TO | translate }}</span>
|
|
}
|
|
@if (isCreate) {
|
|
<span
|
|
[innerHTML]="T.F.TIME_TRACKING.D_TRACKING_REMINDER.CREATE_AND_TRACK | translate"
|
|
></span>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
align="center"
|
|
mat-dialog-actions
|
|
>
|
|
<button
|
|
(click)="cancel()"
|
|
color=""
|
|
mat-button
|
|
type="button"
|
|
>
|
|
<mat-icon>close</mat-icon>
|
|
{{ T.G.CANCEL | translate }}
|
|
</button>
|
|
|
|
<button
|
|
[disabled]="!(selectedTask || newTaskTitle)"
|
|
color="primary"
|
|
mat-stroked-button
|
|
type="submit"
|
|
>
|
|
@if (!isCreate) {
|
|
<mat-icon>track_changes</mat-icon>
|
|
}
|
|
@if (isCreate) {
|
|
<mat-icon>add</mat-icon>
|
|
}
|
|
{{ T.F.TIME_TRACKING.D_TRACKING_REMINDER.TASK | translate }}
|
|
</button>
|
|
</div>
|
|
</form>
|