{% extends "base.html" %} {% load i18n %} {% block js %} {% endblock %} {% block content %} {% if i.template.state != "READY" %}

{% blocktrans %}This is a master image for your new template.{% endblocktrans %}

{% csrf_token %} {% if i.template.state == "NEW" %}

{% endif %}
    {% blocktrans %}Connect to the machine.{% endblocktrans %} {% blocktrans %}Do all the needed installation/customization.{% endblocktrans %} {% blocktrans %}Log off (keep the machine running).{% endblocktrans %} {% blocktrans %}Click on the "save" button on the right.{% endblocktrans %} {% blocktrans %}The machine will be shut down and its disk saved.{% endblocktrans %}
  1. {% blocktrans %}You can share the template with your groups.{% endblocktrans %}
{% endif %}

{{name}}

{% if state == "PENDING" or state == "ACTIVE" and booting %}

{% trans "Starting..." %}

{% elif state == "ACTIVE" and not booting %}

{% trans "Running" %}

{% elif state == "STOPPED" %}

{% trans "Stopped" %}

{% endif %} {% if state == "DONE" %}

{% trans "Deleted" %}

{% endif %} {% if state == "FAILED" %}

{% trans "Unexpected error occured" %}

{% endif %}

{% trans "Login credentials" %}

{% include "vm-credentials.html" %}
{% if i.firewall_host %}

{% trans

{% blocktrans %}This is a list about the network ports forwarded to the public internet.{% endblocktrans %}

{% blocktrans %}You can access the given private port of the VM trough the public address of the network. {% endblocktrans %}

{% blocktrans %}On the IPV6 network you can access the listed private ports direcly using the VM's global IPV6 address (connections to other ports are dropped). {% endblocktrans %}

{% trans "Port administration" %}

{% csrf_token %} {% if i.template.network.nat %}{%endif%} {% for port in ports %} {% if i.template.network.nat %}{%endif%} {% endfor %} {% if i.template.network.nat %} {% endif %}
{% trans "Protocol" %} {% trans "Public port" %}{% trans "Private port" %}
{{port.proto}} {{port.public}}{{port.private}} {% trans "Delete" %}
{% endif %}
{% include "box/vm/box.html" with just_list_vms=1 %}
{% endblock %}