mirror of
https://github.com/Sebclem/OctoPrint-SimpleEmergencyStop.git
synced 2024-11-05 00:53:00 +01:00
15 lines
610 B
Django/Jinja
15 lines
610 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>
|
|
<label class="control-label">{{ _('Enable warding dialog ') }}</label>
|
|
<div class="controls">
|
|
<input type="checkbox" data-bind="checked: settings.plugins.simpleemergencystop.confirmationDialog">
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|