{% extends 'dashboard/base.html' %} {% block title %}Profile{% endblock %} {% block content %}
{{ user.username|first|upper }}

{{ user.get_full_name|default:user.username }}

{{ user.email }}

Subscription

{% if subscription and subscription.active and plan %}
Plan: {{ plan.name }} — {{ subscription.requests_this_month }}/{{ limit }} requests used this month.
{% else %}
You are on the Free plan. View plans
{% endif %}
Company: {{ profile.company|default:"-" }}
Role: {{ profile.role|default:"-" }}
Website: {{ profile.website|default:"-" }}
API Keys: {{ active_non_testing_keys }}/{{ api_key_limit }}
Edit profile & Settings Billing history

Recent Transactions

{% for tx in recent_transactions %}
{{ tx.charge_id }}
{{ tx.created_at }}
{{ tx.amount }} {{ tx.currency }}
{{ tx.status }}
{% empty %}
No transactions yet.
{% endfor %}
{% endblock %}