{% extends "reggi/base.html" %} {% load docca_tags %} {% block title %}API Keys{% endblock %} {% block content %}

Your API Keys

{% try_include "billa/_dashboard_actions.html" %} {% if keys %}
{% try_include "billa/_key_credits_th.html" %} {% for key in keys %} {% try_include "billa/_key_credits.html" %} {% endfor %}
Name Prefix Created Last used Expires
{{ key.name }} {{ key.prefix }}… {{ key.created_at|date:"Y-m-d" }} {% if key.last_used_at %}{{ key.last_used_at|date:"Y-m-d" }}{% else %}Never{% endif %} {% if key.expires_at %}{{ key.expires_at|date:"Y-m-d" }}{% else %}No expiry{% endif %} {% if not key.credit_balance or key.credit_balance.purchase %}
{% csrf_token %}
{% endif %}
{% else %} {% url 'billa.pricing' as pricing_url %}
You have no active API keys.{% if pricing_url %} Purchase a credit pack to get started.{% endif %}
{% endif %} {% endblock %}