netadm/web/templates/body-check_ports.html

16 lines
346 B
HTML

<div id="body">
<input type="text" id="inputText" name="inputText" placeholder="Введите значение" />
<button hx-get="/web/check_ports/start" hx-include="#inputText" hx-target='#body'>Проверить</button>
<div id="result">
{% for result in results %}
<p>{{ result }}</p>
{% endfor %}
</div>
</div>