{% extends 'base.html' %} {% block title %}Complete Price List{% endblock %} {% block content %}

Complete Price List - All Service Variants

{% if pricing_data_by_service_level %} {% for service_level, pricing_data in pricing_data_by_service_level.items %}

{{ service_level }}

{% for row in pricing_data %} {% endfor %}
Cloud Provider Service Compute Plan vCPUs RAM (GB) CPU/Memory Ratio Term Currency Compute Plan Price Variable Unit Units Replica Enforce SLA Base SLA Per Unit SLA Price Discount Model Final Price
{{ row.cloud_provider }} {{ row.service }} {{ row.compute_plan }} {{ row.vcpus }} {{ row.ram }} {{ row.cpu_mem_ratio }} {{ row.term }} {{ row.currency }} {{ row.compute_plan_price|floatformat:2 }} {{ row.variable_unit }} {{ row.units }} {{ row.replica_enforce }} {{ row.sla_base|floatformat:2 }} {{ row.sla_per_unit|floatformat:4 }} {{ row.sla_price|floatformat:2 }} {% if row.has_discount %} {{ row.discount_model }} {% else %} None {% endif %} {{ row.final_price|floatformat:2 }}

{{ pricing_data|length }} variants for {{ service_level }}

{% endfor %} {% else %}

No pricing data available

Please ensure you have active compute plans with prices and VSHNAppCat price configurations.

{% endif %}
{% endblock %}