{% extends 'base.html' %} {% block title %}{{ vm['id'] }}{% endblock %} {% block content %} {% if deleted %}

DELETED

{{ vm['id'] }} has been deleted.

{% else %} {% if force_stop %}

Are you sure?

Are you sure you want to force stop {{ vm['id'] }}? This would be like unplugging the power supply.

No, Cancel!
{% elif delete %}

Are you sure?

Are you sure you want to delete {{ vm['id'] }}?

No, Cancel!
{% else %}

{{ vm['id'] }}

{{ vm['created'] }}
{{ vm['size'] }}
{% if vm['state'] == 'starting' or vm['state'] == 'stopping' %} {{ vm['state'] }} {% elif vm['state'] == 'crashed' or vm['state'] == 'blocked' %} {{ vm['state'] }} {% else %} {{ vm['state'] }} {% endif %}
${{ vm['dollars_per_month'] }}
{{ vm['ipv4'] }}
{{ vm['ipv6'] }}
{{ vm['os_description'] }}
{{ vm['vcpus'] }}
{{ vm['memory_mb'] }}MB
{{ vm['bandwidth_gb_per_month'] }}GB/month
{{ vm['ssh_username'] }}
{{ vm['ssh_authorized_keys'] }}
{% if vm['state'] == 'crashed' or vm['state'] == 'stopped' %}
{% endif %} {% if vm['state'] != 'stopped' %}
{% endif %}

ssh host key fingerprints

{% for key in vm['ssh_host_keys'] %}
SHA256:{{ key.sha256 }} ({{ key.key_type }}){% endfor %}
(What's this? see Understanding the Secure Shell Protocol (SSH))

{% for d in durations %} {% if d == duration %} {{ d }} {% else %} {{ d }} {% endif %} {% endfor %}

cpu

memory

network_in

network_out

disk


add the following to your ~/.ssh/known_hosts file (optional)
{% for key in vm['ssh_host_keys'] %}
{{ vm['ipv4'] }} {{ key.content }}{% endfor %}
  
(What's this? see Understanding the Secure Shell Protocol (SSH))
{% endif %} {% endif %} {% endblock %} {% block pagesource %}/templates/create-capsul.html{% endblock %}