{% extends "maasserver/base.html" %} {% block nav-active-result-list %}active{% endblock %} {% block title %}Boot Image list{% endblock %} {% block page-title %} {{ paginator.count }} boot image{{ paginator.count|pluralize }} in cluster {{ nodegroup.cluster_name }} {% endblock %} {% block html_includes %}{% include "maasserver/snippets.html" %} {% endblock %} {% block content %}

Boot images in cluster {{ nodegroup.cluster_name }}

{% if not paginator.count %} {% include "maasserver/no-bootimages-warning.html" %} {% else %} {% for bootimage in bootimage_list %} {% endfor %}
ID OS Release Architecture Subarchitecture Purpose Label Imported on
{{ bootimage.id }} {{ bootimage.osystem }} {{ bootimage.release }} {{ bootimage.architecture }} {{ bootimage.subarchitecture }} {{ bootimage.purpose }} {{ bootimage.label }} {{ bootimage.updated }}
{% include "maasserver/pagination.html" %} {% endif %}
{% endblock %}