added ai model settings

This commit is contained in:
2021-07-25 13:18:18 +10:00
parent 04fa819a9a
commit c6a31f24e5
2 changed files with 23 additions and 2 deletions

View File

@@ -9,7 +9,11 @@
{% elif field.type != 'SubmitField' %}
<div class="input-group">
{{ field.label( class="input-group-text col-3 justify-content-end" ) }}
{{ field( class="form-control col-9" ) }}
{% if field.type == 'SelectField' %}
{{ field( class="form-select col-9" ) }}
{% else %}
{{ field( class="form-control col-9" ) }}
{% endif %}
</div class="">
{% endif %}
{% endfor %}