{% extends 'base.html' %} {% load static %} {% block title %}AI Agent Marketplace - Quantum Tasks AI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

🤖 AI Agent Marketplace

Discover powerful AI agents to automate your tasks, boost productivity, and streamline your workflow

All {% for category in all_categories %} {{ category }} {% endfor %}
{% if search_query %} Search results for "{{ search_query }}" • {% endif %} {% if selected_category %} {{ selected_category|capfirst }} category • {% endif %} {{ total_agents }} agent{{ total_agents|pluralize }} available
{% if agents_by_category %} {% if not selected_category %}
{% for category, agents in agents_by_category.items %} {% for agent in agents %}
{{ agent.icon }}

{{ agent.name }}

{{ agent.price }} AED

{{ agent.description }}

{% endfor %} {% endfor %}
{% else %} {% for category, agents in agents_by_category.items %}

{{ category }}

{% endfor %} {% endif %} {% else %}
🔍

No agents found

Try adjusting your search or browse all categories

Browse All Agents
{% endif %}
{% endblock %}