{% extends "base.html" %} {% block title %}Account Tiers Management{% endblock %} {% block content %}

Account Tiers Management

Configure account tiers, pricing, and usage limits for your users

Available Tiers

Create New Tier
{% for tier in tiers %} {% endfor %}
ID Tier Name Price (Monthly) Price (Yearly) Max Requests / Day Max Requests / Month Max Providers Max Rotations Max Autoselections Max Models / Rotation Max Models / Autoselect Status Actions
{{ tier.id }} {{ tier.name }}{% if tier.is_default %} Default{% endif %} {{ tier.price_monthly }} {{ tier.price_yearly }} {% if tier.max_requests_per_day == -1 %}Unlimited{% elif tier.max_requests_per_day == 0 %}Blocked{% else %}{{ tier.max_requests_per_day }}{% endif %} {% if tier.max_requests_per_month == -1 %}Unlimited{% elif tier.max_requests_per_month == 0 %}Blocked{% else %}{{ tier.max_requests_per_month }}{% endif %} {% if tier.max_providers == -1 %}Unlimited{% elif tier.max_providers == 0 %}Blocked{% else %}{{ tier.max_providers }}{% endif %} {% if tier.max_rotations == -1 %}Unlimited{% elif tier.max_rotations == 0 %}Blocked{% else %}{{ tier.max_rotations }}{% endif %} {% if tier.max_autoselections == -1 %}Unlimited{% elif tier.max_autoselections == 0 %}Blocked{% else %}{{ tier.max_autoselections }}{% endif %} {% if tier.max_rotation_models == -1 %}Unlimited{% elif tier.max_rotation_models == 0 %}Blocked{% else %}{{ tier.max_rotation_models }}{% endif %} {% if tier.max_autoselection_models == -1 %}Unlimited{% elif tier.max_autoselection_models == 0 %}Blocked{% else %}{{ tier.max_autoselection_models }}{% endif %} {% if tier.is_active %}Active{% else %}Inactive{% endif %} Edit {% if not tier.is_default %} {% else %} (default) {% endif %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}