{% extends "base.html" %} {% block title %}User Panel - Fraud Detection System{% endblock %} {% block content %}
Personal fraud detection and transaction management
My Transactions
Flagged as Fraud
Files Uploaded
| Date | Amount | Time | Fraud Probability | Status | Actions |
|---|---|---|---|---|---|
|
{{ transaction.created_at.strftime('%Y-%m-%d') }}
{{ transaction.created_at.strftime('%H:%M:%S') }} |
${{ "%.2f"|format(transaction.amount) }} |
{{ "%.2f"|format(transaction.time) }}s
|
|
{% if transaction.is_fraud %} Fraud Risk {% else %} Safe {% endif %} |
Upload transaction data or use real-time detection to get started.
| File Name | Upload Date | Size | Records Processed | Fraud Detected | Status |
|---|---|---|---|---|---|
|
{{ file.original_filename }}
{{ file.filename }} |
{{ file.created_at.strftime('%Y-%m-%d') }}
{{ file.created_at.strftime('%H:%M:%S') }} |
{{ "%.1f"|format(file.file_size / 1024) }} KB | {{ file.records_processed or 0 }} | {{ file.fraud_detected or 0 }} | {% if file.processing_status == 'completed' %} Completed {% elif file.processing_status == 'processing' %} Processing {% elif file.processing_status == 'error' %} Error {% else %} Pending {% endif %} |
No files uploaded yet
Upload Your First File