Web app: new entities (Image, RenderedAsset, SharedImage, Token, DeviceImageHistory), enums, repositories, controllers, message handlers, migrations, tests, frontend upload/library/sticker UI, Vue components. Firmware: EPD background screen binaries + gen scripts, setup_bg header. Infra: ddev config, test bundle, gitignore coverage dir. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -90,12 +90,13 @@
|
||||
|
||||
<div class="field">
|
||||
<label for="rotation_interval_hours">Rotation frequency</label>
|
||||
{% set currentHours = device.rotationIntervalMinutes / 60 %}
|
||||
<select id="rotation_interval_hours" name="rotation_interval_hours">
|
||||
<option value="6" {% if device.rotationIntervalHours == 6 %}selected{% endif %}>Every 6 hours</option>
|
||||
<option value="12" {% if device.rotationIntervalHours == 12 %}selected{% endif %}>Every 12 hours</option>
|
||||
<option value="24" {% if device.rotationIntervalHours == 24 %}selected{% endif %}>Daily (every 24 hours)</option>
|
||||
<option value="48" {% if device.rotationIntervalHours == 48 %}selected{% endif %}>Every 2 days</option>
|
||||
<option value="168" {% if device.rotationIntervalHours == 168 %}selected{% endif %}>Weekly</option>
|
||||
<option value="6" {% if currentHours == 6 %}selected{% endif %}>Every 6 hours</option>
|
||||
<option value="12" {% if currentHours == 12 %}selected{% endif %}>Every 12 hours</option>
|
||||
<option value="24" {% if currentHours == 24 %}selected{% endif %}>Daily (every 24 hours)</option>
|
||||
<option value="48" {% if currentHours == 48 %}selected{% endif %}>Every 2 days</option>
|
||||
<option value="168" {% if currentHours == 168 %}selected{% endif %}>Weekly</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user