Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<div>
<span>{{{timerBaseTranslatedValue}}}</span>
{{#if hasShift}}
<span class="text-italic">{{{timerShiftOperatorTranslatedValue}}}</span>
<span>{{{timerShiftValue}}}</span>
<span>{{{timerShiftUnitsTranslatedValue}}}</span>
{{/if}}
</div>
{{#if hasFormula}}
<div class="form-group"></div>
{{/if}}
<div class="formula-container">{{{timerFormula}}}</div>

View File

@@ -0,0 +1,28 @@
<div class="row">
<div class="col-md-4">
<select data-name="timerBase" class="form-control">
{{#each timerBaseOptionDataList}}
<option value="{{value}}"{{#if isSelected}} selected{{/if}}>{{label}}</option>
{{/each}}
</select>
</div>
<div class="col-md-2">
<select data-name="timerShiftOperator" class="form-control hidden">
{{#each timerShiftOperatorOptionDataList}}
<option value="{{value}}"{{#if isSelected}} selected{{/if}}>{{label}}</option>
{{/each}}
</select>
</div>
<div class="col-md-3">
<input data-name="timerShift" class="form-control hidden" value="{{timerShiftValue}}">
</div>
<div class="col-md-3">
<select data-name="timerShiftUnits" class="form-control hidden">
{{#each timerShiftUnitsOptionDataList}}
<option value="{{value}}"{{#if isSelected}} selected{{/if}}>{{label}}</option>
{{/each}}
</select>
</div>
</div>
<div class="formula-container">{{{timerFormula}}}</div>