{% 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", "href": "/staff/rate-limits"}, {"name": setting.scope} ] %} {% include "partials/breadcrumbs.html" %} {% endwith %}

Edit Rate Limit

Update the stored rule. Enforcement remains controlled by the global toggle.

{% with staff_site_settings_tab_active="rate_limits" %} {% include "partials/staff_site_settings_tabs.html" %} {% endwith %} {% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
Last updated {{ setting.updated_at | timeago }}
Back to rate limits

{% with modal_id="confirm-delete-rate-limit", modal_title="Delete rate limit", modal_body='Delete rate limit ?', modal_confirm_text="Delete rate limit", modal_desc="This permanently removes the rate limit rule." %} {% include "partials/confirm_modal.html" %} {% endwith %}
{% endblock %}