Move 'Update' button up in hardware view

multi-ogserver
Jose M. Guisado 2022-02-23 09:58:30 +01:00
parent ca00bd5e89
commit c5cb75eea3
1 changed files with 7 additions and 5 deletions

View File

@ -7,7 +7,13 @@
<h1 class="m-5">{{_('Hardware inventory')}}</h1>
<h2 class="mb-3 mx-5">Selected client: {{ form.ips.data }}</h1>
<h2 class="mb-3 mx-5">{{ _('Selected client:') }} {{ form.ips.data }}</h1>
{{ wtf.quick_form(form,
action=url_for('action_hardware'),
method='post',
button_map={'refresh': 'primary'},
extra_classes='m-2')}}
<table class="table table-striped">
<thead class="thead-dark">
@ -26,9 +32,5 @@
</tbody>
</table>
{{ wtf.quick_form(form,
action=url_for('action_hardware'),
method='post',
button_map={'refresh': 'primary'}) }}
{% endblock %}