{% extends "maasserver/base.html" %} {% block nav-active-images %}active{% endblock %} {% block title %}Boot Images{% endblock %} {% block page-title %}Boot Images in {% include "maasserver/site_title.html" %}{% endblock %} {% block html_includes %}{% include "maasserver/snippets.html" %} {% endblock %} {% block head %} {% endblock %} {% block content %} {% if import_running %}
Importing images . . .
{% endif %}

Ubuntu

{% csrf_token %} {% if user.is_superuser and not import_running %}
{% if connection_error %}
Connection Error: Unable to retrieve image information from boot sources.
{% else %} {% if ubuntu_streams_count == 0 %}
Error: No boot sources provide Ubuntu images.
{% elif ubuntu_streams_count == 1 %}
Release:
    {% for release in ubuntu_releases %}
  • {{release.title}}
  • {% endfor %}
Architecture:
    {% for arch in ubuntu_arches %}
  • {{arch.title}}
  • {% endfor %}
{% else %}
More than one boot source is providing Ubuntu images. Image selection cannot be performed using the WebUI.
{% endif %} {% endif %}
{% endif %}
{% if ubuntu_resources|length %} {% for resource in ubuntu_resources %} {% endfor %}
Release Architecture Size Nodes deployed Last update
{% if not resource.complete %}
{% endif %}
{{ resource.title }} {{ resource.arch }} {{ resource.size }} {{ resource.number_of_nodes }} {{ resource.last_update }}
{% else %}
No Ubuntu images have been imported. Ubuntu images are required to allow nodes to enlist, commission, and install.
{% endif %}
{% if user.is_superuser and not import_running %}
{% if ubuntu_streams_count == 1 %} {% if ubuntu_resources|length %} {% else %} {% endif %} {% elif ubuntu_streams_count > 1 %} {% endif %}
{% endif %}

Custom

{% if uploaded_resources|length %} {% for resource in uploaded_resources %} {% endfor %}
Name Architecture Size Nodes deployed Last update
{% if not resource.complete %}
{% endif %}
{{ resource.title }} {% if user.is_superuser %} delete {% endif %} {{ resource.arch }} {{ resource.size }} {{ resource.number_of_nodes }} {{ resource.last_update }}
{% else %}
No custom images have been uploaded.
{% endif %}
{% endblock %}