{% extends "header.html" %} {% import 'wtf-fork.html' as wtf %} {% import 'elements.html' as elm %} {% block title %} Hosts: {{ group }} {% endblock %} {% block content %}

{{ group }}

{{ wtf.quick_form(form, horizontal_columns=('lg', 2, 8)) }}
{% if existing_hosts %} Existing hosts
    {% for host in existing_hosts %}
  1. {{ host }}
  2. {% endfor %}
{% else %}

Currently no hosts (group is empty)

{% endif %}

{{ elm.footer() }} {% endblock %}