{% extends 'base.html' %} {% block title %}Pricing{% endblock %} {% block content %}

CAPSUL TYPES & PRICING

{% for vm_size_key, vm_size in vm_sizes.items() %} {% endfor %}
type monthly* cpus mem ssd net
{{ vm_size_key }} ${{ vm_size['dollars_per_month'] }} {{ vm_size['vcpus'] }} {{ vm_size['memory_mb'] }} 25G {{ vm_size['bandwidth_gb_per_month'] }}
    * net is calculated as a per-month average
    * vms are billed for a minimum of 24 hours upon creation
    * all VMs come standard with one public IPv4 address
    
    SUPPORTED OPERATING SYSTEMS:


    {% for os_id, os in operating_systems.items() %}   - {{ os.description }} 
    {% endfor %}
  
{% endblock %}