{% extends 'base.html' %} {% block content %}

Compute Plan Price Comparison

{% for plan_data in plans_data %}

{{ plan_data.plan.name }}

Plan Details

Cloud Provider: {{ plan_data.plan.cloud_provider.name }}
vCPUs: {{ plan_data.plan.vcpus }}
RAM: {{ plan_data.plan.ram }} GB
CPU/Memory Ratio: {{ plan_data.plan.cpu_mem_ratio }}
Term: {{ plan_data.plan.get_term_display }}
Compute Plan Prices: {% for price in plan_data.plan.prices.all %} {{ price.amount }} {{ price.currency }}
{% empty %} No prices set {% endfor %}

Calculated AppCat Prices

{% if plan_data.calculated_prices %} {% for price in plan_data.calculated_prices %} {% endfor %}
Service Variable Unit Service Level Units Plan Term Service Term Currency Final Price Discount
{{ price.service }} {{ price.variable_unit }} {{ price.service_level }} {{ price.units }} {{ price.plan_term }} {{ price.service_term }} {{ price.currency }} {{ price.price }} {% if price.discount_model %} {{ price.discount_model.name }} {% else %} - {% endif %}
{% else %}

No AppCat prices calculated for this plan.

{% endif %}
{% empty %}
No compute plans found.
{% endfor %} {% endblock %}