{% extends "page.html" %} {% block title %}LiteLLM Admin{% endblock %} {% block main %}

LiteLLM Key Admin

{% set success = success %} {% set error = error %} {% if success %}
{{ success }} ({{ user_query }})
{% endif %} {% if error %}
{{ error }}
{% endif %} {% for u in users %} {% endfor %}
User Spent Max Budget Budget Duration TPM RPM Blocked Expires Actions
{{ u.username }} ${{ "%.4f"|format(u.spend) if u.has_key else "-" }} {{ "$%.2f"|format(u.max_budget) if u.has_key and u.max_budget else "-" }} {{ u.budget_duration if u.has_key else "-" }} {{ u.last_regenerated_at[:19] if u.last_regenerated_at else "-" }} {{ u.tpm_limit if u.has_key and u.tpm_limit else "-" }} {{ u.rpm_limit if u.has_key and u.rpm_limit else "-" }} {{ "Yes" if u.has_key and u.blocked else "No" if u.has_key else "-" }} {{ u.expires[:10] if u.has_key and u.expires else "-" }} {% if u.has_key %}
{% if u.blocked %}
{% else %}
{% endif %} {% endif %}
{% endblock %}