{% extends "base.html" %} {% load static %} {% load waffle_tags %} {% load cta_tags %} {% block title %}Pricing - Gobii{% endblock %} {% block head_extras %} {{ block.super }} {% if environment.is_production and settings.GOBII_PROPRIETARY_MODE %} {% endif %} {% endblock %} {% block content %}
Simple Pricing

Choose the plan that fits your team.

{% comment %} Card component {% endcomment %} {% for plan in pricing_plans %}
{% if plan.badge %}
{% if plan.highlight %}{% endif %} {{ plan.badge }}
{% endif %}

{{ plan.name }}

{{ plan.desc }}

{% if plan.price_amount is not None %} {{ plan.price_prefix }} {{ plan.price_amount }} {% else %} {{ plan.price_label }} {% endif %}

{{ plan.pricing_model }}

    {% if plan.tasks %}
  • {{ plan.tasks }} tasks included
  • {% endif %} {% for feature in plan.features %}
  • {{ feature }}
  • {% endfor %}
{% if plan.disabled or plan.cta_disabled or plan.current_plan %} {{ plan.cta }} {% else %} {% if plan.cta_icon %}{% endif %} {{ plan.cta }} {% endif %} {% if plan.trial_cancel_text %}

{{ plan.trial_cancel_text }}

{% endif %}
{% endfor %}
{% if trial_note %}

{{ trial_note }}

{% endif %}

Let's design your deployment.

Enterprise plans with dedicated infrastructure, SLAs, and custom governance.

{% cta_text "cta_enterprise_request_call" fallback="Request a call" %}

Compare plans

{% for row in comparison_rows %} {% for col in row|slice:"1:" %} {% endfor %} {% endfor %}
Feature Pro Scale
{{ row.0 }}{{ col }}

Frequently asked questions

{% for q,a in faqs %}
{% endfor %}
{% endblock %}