{% load humanize docca_tags %}
Request counts per endpoint for the selected key{% if tier %}, against your {{ tier.name }} tier limits{% endif %} · {{ today|date:"F j, Y" }}
| Endpoint | Today | This month |
|---|---|---|
{{ ep.method }}
{{ ep.path|clean_path }}
|
{# Today column #}
{% if tel and tel.period == 'day' %}
{% if tel.limit > 0 %}
{% widthratio row.day_count tel.limit 100 as bar_pct %}
{% endif %}
{{ row.day_count|intcomma }} / {{ tel.limit|intcomma }}
|
{# Month column #}
{% if tel and tel.period == 'month' %}
{% if tel.limit > 0 %}
{% widthratio row.month_count tel.limit 100 as bar_pct %}
{% endif %}
{{ row.month_count|intcomma }} / {{ tel.limit|intcomma }}
|