mirror of
https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop.git
synced 2024-11-05 00:53:00 +01:00
25 lines
941 B
Django/Jinja
25 lines
941 B
Django/Jinja
<h3>{{ _("Simple Emergency Stop") }}</h3>
|
|
<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">
|
|
</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>
|
|
</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>
|
|
|
|
|
|
</form>
|