Pick your group plan


{% assign sections = current_user.sections %} {% for service in provider.services %} {% for section in sections %} {% assign cleanedsection = section | remove_first: "/" %} {% for feature in service.features %} {% if feature.system_name contains cleanedsection %} {% for plan in service.application_plans %}
{{ plan.name }}
{% if plan.features == present %}
Features
    {% for feature in plan.features %}
  • {{ feature.name }}
  • {% endfor %}
{% endif %}
Limits{{ plan.trial_period_days.size }}
    {% if plan.usage_limits == present %} {% for limit in plan.usage_limits %}
  • {{ limit.metric.name }} – {{ limit.value }} {{ limit.metric.unit }}s per {{ limit.period }}
  • {% endfor %} {% else %}
  • No limits
  • {% endif %}
{% endfor %} {% else %} {% comment %} Maybe render a signup or login button {% endcomment %} {% endif %} {% endfor %} {% endfor %} {% endfor %}