{% extends "base.html" %} {% block title %}Dashboard - {{ project_name }}{% endblock %} {% block content %}

My Dashboard

Welcome back, {{ user.email }}

Credits

Your current balance

{{ current_balance }} credits
{% if recent_transactions %}

Recent Activity:

{% for transaction in recent_transactions %}
{{ transaction.description }}
{% if transaction.amount >= 0 %}+{% endif %}{{ transaction.amount }}
{% endfor %}
{% else %}

No credit transactions yet.

{% endif %}

Account

Manage your profile

  • Update profile information
  • Change password
  • Email preferences
{% if stripe_enabled %}

Services

Available features

  • AI-powered tools
  • Data processing
  • Premium features
Coming Soon

Billing

Payment history

  • View invoices
  • Update payment methods
  • Subscription status
{% endif %}
{% endblock %}