+ Engage: {{:value.engagecost}}
+ Activate: {{:value.activecost}}
+ Passive: {{:value.passivecost}}
+
+ {{if value.can_use == 1}}
+
+ {{:helper.link(value.engagestring, 'circle-arrow-s', {'interact_module' : value.index, 'module_mode' : 'engage'}, null)}}
+
+ {{/if}}
+ {{if value.can_select == 1}}
+
+ {{if value.name == data.primarysystem}}
+
SELECTED
+ {{else}}
+ {{:helper.link('Select', 'circle-arrow-s', {'interact_module' : value.index, 'module_mode' : 'select'}, null)}}
+ {{/if}}
+
+ {{/if}}
+ {{if value.can_toggle == 1}}
+
+ {{if value.is_active == 1}}
+ {{:helper.link(value.deactivatestring, 'circle-arrow-s', {'interact_module' : value.index, 'module_mode' : 'deactivate'}, null)}}
+ {{else}}
+ {{:helper.link(value.activatestring, 'circle-arrow-s', {'interact_module' : value.index, 'module_mode' : 'activate'}, null)}}
+ {{/if}}
+
+ {{/if}}
+