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

DELETED

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

{% else %}

Are you sure?

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

No, Cancel!
{% endif %} {% else %}

{{ vm['id'] }}

{{ vm['created'] }}
{{ vm['size'] }}
${{ vm['dollars_per_month'] }}
{{ vm['ipv4'] }}
{{ vm['os_description'] }}
{{ vm['vcpus'] }}
{{ vm['memory_mb'] }}MB
{{ vm['bandwidth_gb_per_month'] }}GB/month
cyberian
{{ vm['ssh_authorized_keys'] }}

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 %} {% endblock %} {% block pagesource %}/templates/create-capsul.html{% endblock %}