forked from cesarvandevelde/OctoPrint-M73Progress
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34fdeb1
commit 6e4ef5d
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
13 changes: 7 additions & 6 deletions
13
octoprint_btt_touch_support/templates/btt_touch_support_settings.jinja2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
<h3>{{ _("BTT TFT Touchscreen Settings") }}</h3> | ||
|
||
<form class="form-horizontal"> | ||
<div class="control-group"> | ||
<label class="control-label">{{ _("Use time estimate") }}</label> | ||
<div class="controls"> | ||
<input type="checkbox" class="input-block-level" data-bind="checked: settings.plugins.btt_touch_support.progress_from_time"> | ||
<div class="help-block">{{ _("Calculate progress based on time elapsed and time remaining. Useful for <code>PrintTimeGenius</code> users.") }}</div> | ||
</div> | ||
<div class="controls"> | ||
<label class="checkbox"> | ||
<input type="checkbox" data-bind="checked: settings.plugins.btt_touch_support.progress_from_time"> {{ _("Use time estimate") }} | ||
<span class="help-block"> | ||
{{ _("Calculate progress based on time elapsed and time remaining. Useful for <code>PrintTimeGenius</code> users.") }} | ||
</span> | ||
</label> | ||
</div> | ||
</form> |