{% extends "dashboard/base.html" %} {% load i18n %} {% block title-page %}{{ instance.name }} | vm{% endblock %} {% block content %} {% if instance.is_base %}
{% trans "This is the master vm of your new template" %} {% trans "Start template tutorial tour" %}
  1. Modify the vm to suit your needs (optional)
    • Change the description
    • Change the resources it will need (CPU and RAM)
    • Attach or deattach disks
    • Add or remove network interfaces
  2. Deploy the vm
  3. Connect to the machine
  4. Do all the needed installation/customization
  5. Log off
  6. Press the "Save as template" button
    {% csrf_token %}
{% endif %}
{{ instance.get_status_display|upper }}

{% trans "Connection" %}

{% trans "Password" %}:
{% trans "Generate new password!" %}
{% comment %} TODO Couldn't this use a modal? {% endcomment%}
{% trans "Are you sure?" %}
{% trans "Yes" %} / {% trans "No" %}
{% include "dashboard/vm-detail/home.html" %}
{% include "dashboard/vm-detail/resources.html" %}
{% include "dashboard/vm-detail/console.html" %}
{% include "dashboard/vm-detail/access.html" %}
{% include "dashboard/vm-detail/network.html" %}
{% include "dashboard/vm-detail/activity.html" %}
{% endblock %} {% block extra_js %} {% endblock %}