OctoPrint-SimpleEmergencyStop/octoprint_simpleemergencystop/templates/simpleemergencystop_settings.jinja2

25 lines
941 B
Plaintext
Raw Normal View History

<h3>{{ _("Simple Emergency Stop") }}</h3>
2017-07-23 18:20:27 +02:00
<form class="form-horizontal">
<div class="control-group">
<label class="control-label">{{ _('Emergency GCODE:') }}</label>
<div class="controls">
<input type="text" class="input-block-level"
data-bind="value: settings.plugins.simpleemergencystop.emergencyGCODE">
2017-07-23 18:20:27 +02:00
</div>
</div>
<div class="control-group">
<label class="control-label">{{ _('Enable warning dialog') }}</label>
<div class="controls">
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.confirmationDialog">
</div>
2017-07-23 18:20:27 +02:00
</div>
<div class="control-group">
<label class="control-label">{{ _('Enable big button') }}</label>
<div class="controls">
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.big_button">
</div>
</div>
2017-07-23 18:20:27 +02:00
</form>