{% extends "admin/base.html" %} {% block title %}Edit User{% endblock %} {% block content %}

Edit User

Token: {{ user.token }}

Created: {{ user.created_at.strftime('%Y-%m-%d %H:%M:%S') }}

Status: {% if user.disabled_at %} Disabled {% else %} Active {% endif %}

A human-readable identifier for this user
Normal: Standard user with default quotas
Special: Premium user with higher limits and no rate limiting
Temporary: Time-limited user (expires after 24 hours)
Maximum tokens this user can consume for OpenAI models
Maximum tokens this user can consume for Anthropic models

Current Usage

{% for family, count in user.token_counts.items() %} {% endfor %}
Model Family Input Tokens Output Tokens Total Tokens Current Limit
{{ family }} {{ count.input }} {{ count.output }} {{ count.total }} {{ user.token_limits.get(family, 'Unlimited') }}
Cancel
{% endblock %}