{% extends "_base.html" %} {% block title %}{{ object.name }} - MeshAdmin{% endblock %} {% block content %}
Network
{{ object.network.name }}
Created At
{{ object.created_at|date:'Y-m-d H:i' }}
Progress
{{ object.completed_hosts.count }}/{{ object.target_hosts.count }} hosts
Notes
{{ object.notes|default:'-' }}
{% for host in object.target_hosts.all %} {{ host.name }} {{ host.assigned_ip|default:"Not assigned" }} {% if host in object.completed_hosts.all %} Completed {% else %} Pending {% endif %} {{ host.last_config_refresh|default:"Never" }}
{% if host not in object.completed_hosts.all %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% endfor %}
{% endblock %}