Files
Polaris/nano/templates/revelation.tmpl
Unknown cce3116c3a Ports Modular Computers from Baystation
This is just the initial parts. Additional work will probably be necessary.
2019-04-02 21:06:37 -04:00

23 lines
603 B
Cheetah

{{:helper.syndicateMode()}}
<div class='item'>
<div class='itemLabel'>
Payload status:
</div>
<div class='itemContent'>
{{if data.armed}}
ARMED
{{else}}
DISARMED
{{/if}}
</div>
<div class='itemLabel'>
Controls:
</div>
<div class='itemContent'>
<table>
<tr><td>{{:helper.link('OBFUSCATE PROGRAM NAME', null, { 'PRG_obfuscate' : 1 })}}
<tr><td>{{:helper.link(data.armed ? 'DISARM' : 'ARM', null, { 'PRG_arm' : 1 })}}
{{:helper.link('ACTIVATE', 'radiation', { 'PRG_activate' : 1 }, data.armed ? null : 'disabled', data.armed ? 'redButton' : null)}}
</table>
</div>
</div>