Files
Aurora.3/nano/templates/lighting_ctrl.tmpl
Lohikar 70ad90663b Nightmode Fixes (#1293)
rscadd: "Added a night-mode control program for the Chief Engineer."
tweak: "Changed how night-mode works internally."
tweak: "Red alert now disables night-mode."
spellcheck: "Slightly changed alert messages."
Fixes #1200
2016-12-25 20:10:46 +02:00

16 lines
672 B
Cheetah

<div class="item">
<h3>Target Areas</h3>
<div class="itemContentFull">
{{:helper.link('Public Hallways', 'lightbulb', {'context': 'pub'}, (data.context == 'pub') ? 'selected' : null)}}
{{:helper.link('All Areas', 'lightbulb', {'context': 'all'}, (data.context == 'all') ? 'selected' : null)}}
</div>
</div>
<div class="item">
<h3>Lighting Status</h3>
<div class="itemContentFull">
{{:helper.link('Normal', 'bullet', {'mode': 'full'}, (data.status == 'full') ? 'selected' : null)}}
{{:helper.link('Darkened', 'bullet', {'mode': 'dark'}, (data.status == 'dark') ? 'selected' : null)}}
</div>
</div>
<hr/>
{{:helper.link('Apply', 'check', {'set': true}, null)}}