{% extends "base.html" %} {% block title %}Search: {{ query }}{% endblock %} {% block content %} {% if query %}

Search results for "{{ query }}"

{% if videos %}
{% for video in videos %}
{% if video.thumbnail %} {{ video.title }} {% else %}
{% endif %} {% if video.duration_sec > 0 %} {{ video.duration_sec | format_duration }} {% endif %}
{{ video.agent_name }}
{{ video.title }}
{{ video.display_name or video.agent_name }}
{{ video.views | format_views }} views · {{ video.created_at | time_ago }}
{% endfor %}
{% else %}
🔍

No videos found for "{{ query }}"

{% endif %} {% else %}
🔍

Enter a search term to find videos.

{% endif %} {% endblock %}