{# templates/stripe_donations/suspects_list.html #} {% extends "template_base.html" %} {% block title %}Stripe Fraudulent and Suspect Charges{% endblock %} {% block content %} {% load template_filters %} {% load humanize %}

Stripe Fraudulent and Suspect Charges

There are {{ number_of_suspects }} suspect charges in our database, {{ number_of_suspects_month }} from the last month.
These transactions (charge.succeeded) are cached at the moment they are received, and are not updated with current status.
There are {{ number_of_disputes }} disputes in our database, {{ number_of_disputes_month }} from the last month.
We have two working weeks, to provide evidence that the charge is fraudulent. Evidence due dates that are in the past are shown in red.
These transactions (charge.dispute.funds_withdrawn) are cached at the moment they are received, and are not updated with current status.
Click the link on the Charge ID field in any row, to go to the associated Stripe charge details page (you must have Stripe.com authentication for WeVote to see the page).

{% if stripe_processing_enabled %} Processing of Stripe Transactions is ENABLED {% else %} Processing of Stripe Transactions is DISABLED {% endif %}

{% for dispute in disputes_list %} {% endfor %}
Created Amount Fee Total Evidence Due By Zip Code Reason Charge ID Live Data
{{ forloop.counter }} {{ dispute.created }} {{ dispute.amount|pennies_to_money }} {{ dispute.fee|pennies_to_money }} {{ dispute.total_cost|pennies_to_money }} {{ dispute.evidence_due_by }} {{ dispute.billing_address }} {{ dispute.reason }} {{ dispute.charge_id}} {{ dispute.livemode}}
Previous page Next page
{% for suspect in suspects_list %} {% endfor %}
Created Amount Paid Refunded Email Zipcode Brand Country Last 4 Charge ID Live Data
{{ forloop.counter }} {{ suspect.created }} {{ suspect.amount|pennies_to_money }} {{ suspect.is_paid }} {{ suspect.is_refunded }} {{ suspect.email }} {{ suspect.address_zip }} {{ suspect.brand }} {{ suspect.country }} {{ suspect.last4 }} {{ suspect.stripe_charge_id }} {{ suspect.livemode}}
Previous page Next page
For testing ip history blocking:
{% endblock %}