{% extends 'base.html' %} {% load static %} {# AGENT TEMPLATE STARTER - Copy this file and customize for new agents REPLACE THE FOLLOWING: 1. "Agent Template Starter" -> Your agent name 2. "YOUR_AGENT_SLUG" -> your-agent-slug 3. Form fields in the widget-content section 4. How it works steps (optional) 5. Agent-specific JavaScript (optional) KEEP THE FOLLOWING: - All include statements for shared components - Basic template structure and CSS links - Processing and results components #} {% block title %}Data Analyzer - Quantum Tasks AI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% include "workflows/components/agent_header.html" with agent_title=agent_config.name agent_subtitle=agent_config.description %} {% include "workflows/components/quick_agents_panel.html" %}

{{ agent_config.icon }} {# CUSTOMIZE: Change "Details" to something specific like "Configuration", "Input", etc. #} {{ agent_config.name }} Details

{% csrf_token %}
📁
Click to upload or drag and drop
PDF files only
Supported format: PDF files only. Max size: 10MB
{# END CUSTOMIZE SECTION #}
{% if user.is_authenticated %} {% if user.wallet_balance >= agent_config.price %} {% else %}
Insufficient balance! You need {{ agent_config.price }} AED.
💰 Top Up Wallet {% endif %} {% else %} 🔐 Login to Continue {% endif %}

â„šī¸ How It Works

  1. Upload your PDF file
  2. Choose analysis type and preferences
  3. Our AI analyzes your data
  4. Get comprehensive insights and reports
{% include "workflows/components/processing_status.html" with status_title="Analyzing Your Data..." status_text="Please wait while our AI processes your file..." %} {% include "workflows/components/results_container.html" with results_title="Analysis Results" %}
{% endblock %} {% block extra_js %} {# CUSTOMIZE: Add agent-specific JavaScript file if needed #} {# #} {# CUSTOMIZE: Add agent-specific JavaScript inline if needed #} {% endblock %}