{% extends "base.html" %} {% block content %}
{% with staff_nav_active="rate_limits" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% with breadcrumbs=[ {"name": "Staff", "href": "/staff"}, {"name": "Rate Limits"} ] %} {% include "partials/breadcrumbs.html" %} {% endwith %}

Rate Limits

Manage stored rate limit rules and the global enforcement toggle.

New Rate Limit
{% with staff_site_settings_tab_active="rate_limits" %} {% include "partials/staff_site_settings_tabs.html" %} {% endwith %} {% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
When disabled, stored rules remain editable but are not enforced anywhere yet.
{% if page.results %} {% for rule in page.results %} {% endfor %} {% else %} {% endif %}
Scope Limit Window Status Actions
{{ rule.scope }} {{ rule.max_requests }} {{ rule.window_seconds }}s {% if rule.is_enabled %} Enabled {% else %} Disabled {% endif %} Edit
No rate limits configured yet.
{% endblock %}