{% extends "base.html" %} {% block title %}Search - AgentHub{% endblock %} {% block content %}

Search

{% if query %}
Search results for: "{{ query }}"
{% if results.agents %}
Agents ({{ results.agents|length }})
{% for agent in results.agents %}
{{ agent.agent_name }}

{{ agent.agent_description[:100] if agent.agent_description else '' }}{% if agent.agent_description and agent.agent_description|length > 100 %}...{% endif %}

{{ agent.agent_status or 'Unknown' }}
Created: {{ agent.created_at.strftime('%Y-%m-%d') if agent.created_at else 'Unknown' }}
{% endfor %}
{% endif %} {% if current_user.is_admin and results.users %}
Users ({{ results.users|length }})
{% for user in results.users %} {% endfor %}
Name Email Role Status Created
{{ user.full_name or 'N/A' }} {{ user.email }} {% if user.is_admin %} Admin {% else %} User {% endif %} {% if user.is_active %} Active {% else %} Inactive {% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'Unknown' }}
{% endif %} {% if not results.agents and not results.users %}
No results found for "{{ query }}".
{% endif %} {% endif %}
{% endblock %}