{% extends "frontend/base.html" %} {% load i18n %} {% load static %} {% block html_title %} {% block page_title %} {{ service.name }} {% endblock page_title %} {% endblock html_title %} {% block content %}
{% if service.logo %} {{ service.name }} {% endif %}

{{ service.name }}

{{ service.category }}

{{ service.description|default:"No description available." }}

{% trans "Available Offerings" %}

{% for offering in service.offerings.all %}
{% if offering.provider.logo %} {{ offering.provider.name }} {% endif %}
{{ service.name }} on {{ offering.provider.name }}

{{ offering.description|default:"No description available." }}

{% trans "Control Planes" %}
    {% for control_plane in offering.control_planes.all %}
  • {{ control_plane.name }}
  • {% empty %}
  • {% trans "No control planes available" %}
  • {% endfor %}
{% trans "Available Plans" %}
{% for plan in plans %} {% empty %} {% endfor %}
{% trans "Plan" %} {% trans "Term" %} {% trans "Features" %} {% trans "Pricing" %} {% trans "Actions" %}
{{ plan.name }} {% if plan.description %}
{{ plan.description }} {% endif %}
{{ plan.term }} {% trans "months" %} {% if plan.features %}
    {% for feature, value in plan.features.items %}
  • {{ feature }}: {{ value }}
  • {% endfor %}
{% else %} {% trans "No features specified" %} {% endif %}
{% if plan.pricing %}
    {% for price_type, price in plan.pricing.items %}
  • {{ price_type }}: {{ price }}
  • {% endfor %}
{% else %} {% trans "No pricing specified" %} {% endif %}
{% trans "No plans available for this offering" %}
{% empty %}
{% trans "No offerings available for this service yet." %}
{% endfor %}
{% endblock content %}