{% extends "maasserver/base.html" %} {% block nav-active-settings %}active{% endblock %} {% block title %}Settings{% endblock %} {% block page-title %}Settings{% endblock %} {% block head %} {% endblock %} {% block content %}

Users and Keys

{% for user_item in user_list %} {% endfor %}
ID Number of nodes in use Last seen MAAS Admin
{{ user_item.username }} {{ user_item.node_set.count }} {{ user_item.last_login }} {% if user_item.is_superuser %} Yes {% endif %} edit {% if user != user_item %} delete
{% csrf_token %}
{% endif %}
Add user

Commissioning

{% csrf_token %}
    {% for field in commissioning_form %} {% include "maasserver/form_field.html" %} {% endfor %}

Ubuntu

{% csrf_token %}
    {% with field=ubuntu_form.update_from %} {% include "maasserver/form_field.html" %} {% endwith %}
  • Add Add archive for newly provisioned machines
  • {% with field=ubuntu_form.fallback_master_archive %} {% include "maasserver/form_field.html" %} {% endwith %} {% with field=ubuntu_form.keep_mirror_list_uptodate %} {% include "maasserver/form_field.html" %} {% endwith %} {% with field=ubuntu_form.fetch_new_releases %} {% include "maasserver/form_field.html" %} {% endwith %}

Network Configuration

{% csrf_token %}
    {% for field in maas_and_network_form %} {% include "maasserver/form_field.html" %} {% endfor %}
{% endblock %}