rework of super-server using jinja2

This commit is contained in:
Kevin Francoise
2023-01-19 19:28:14 +01:00
parent 2ba2c988ea
commit 2bef6efea6
6 changed files with 447 additions and 643 deletions

6
templates/form.html Normal file
View File

@ -0,0 +1,6 @@
<div class='col'><select class='form-control' name='team'>
<option value='all'>All teams</option>
{% for hostgroup in hostgroups %}
<option value="{{ hostgroup }}">{{ hostgroup }}</option>
{% endfor %}
</select></div>