added auto-rotate to settings, not used in job mgr yet

This commit is contained in:
2022-07-13 00:26:24 +10:00
parent 713d9d96a1
commit 3710b573ea
7 changed files with 23 additions and 9 deletions

View File

@@ -8,17 +8,19 @@
{{field}}
{% elif field.type != 'SubmitField' %}
<div class="input-group">
{{ field.label( class="input-group-text col-3 justify-content-end", title=HELP[field.name] ) }}
{{ field.label( class="input-group-text col-4 justify-content-end", title=HELP[field.name] ) }}
{% if field.type == 'SelectField' %}
{{ field( class="form-select col-9" ) }}
{{ field( class="form-select col-8" ) }}
{% elif field.type == 'BooleanField' %}
{{ field( class="form-check form-check-input mt-2" ) }}
{% else %}
{{ field( class="form-control col-9" ) }}
{{ field( class="form-control col-8" ) }}
{% endif %}
</div class="">
{% endif %}
{% endfor %}
<div class="form-row col-12">
{{form.submit(class="btn btn-primary offset-2 col-2 mt-4" )}}
{{form.submit(class="btn btn-primary offset-4 col-2 mt-4" )}}
</div class="row">
</div class="form">
</div class="row">