{% extends 'base.html' %} {% load static %} {% block title %}Credits Dashboard{% endblock %} {% block content %}

Credits Dashboard

Current Balance

{{ current_balance }} credits

Recent Transactions

{% if recent_transactions %}
{% for transaction in recent_transactions %} {% endfor %}
Date Amount Description
{{ transaction.created_at|date:"M d, Y g:i A" }} {% if transaction.amount >= 0 %}+{% endif %}{{ transaction.amount }} credits {{ transaction.description }}
{% else %}

No transactions yet!

Your credit transactions will appear here once you start using credits.

{% endif %}

Quick Actions

Use Services
{% endblock %}