Quick Tips:
- Search by user email to find all payments for a specific user
- Use Stripe Payment Intent ID for exact payment lookup
- Filter by payment type (Credit Purchase, Subscription, Refund)
- Use date ranges to narrow down investigation periods
{% extends "base.html" %}
{% block title %}Payment Search - Admin Dashboard - {{ project_name }}{% endblock %}
{% block content %}
Search and investigate payment transactions No payments found matching your search criteria. Try adjusting your search filters or clearing them to see all payments. Payment Search Use the search form above to find specific payments for investigation or support.Payment Search
Search Payments
Payment Results
{% for payment in payments %}
Date
User
Type
Amount
Status
Description
Actions
{% endfor %}
{{ payment.created_at|date:"M d, Y" }}
{{ payment.created_at|date:"H:i" }}
{{ payment.user.email }}
{{ payment.get_payment_type_display }}
${{ payment.amount }} {{ payment.currency|upper }}
{{ payment.get_status_display }}
{% if payment.description|length > 40 %}
{{ payment.description|slice:":40" }}...
{% else %}
{{ payment.description|default:"—" }}
{% endif %}
Quick Tips: