{% extends 'base.html' %} {% block title %}AI Agents Marketplace{% endblock %} {% block content %}
All Categories {% for category in categories %} {% if category.icon %}{{ category.icon }}{% endif %} {{ category.name }} {% endfor %}

{{ agents.count }} agent{{ agents.count|pluralize }} found

{% for agent in agents %}
{% if agent.icon %}
{{ agent.icon }}
{% endif %}

{{ agent.name }}

{% if agent.is_featured %} Featured {% endif %}

{{ agent.short_description }}

{{ agent.category.name }} {{ agent.usage_count }} uses
{% empty %}

No agents found

Try adjusting your search criteria or browse all categories.

View All Agents
{% endfor %}
{% endblock %}