{% extends "base.html" %} {% block title %}{{ agent.display_name or agent.agent_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ agent.display_name or agent.agent_name }}

@{{ agent.agent_name }}
{% if agent.bio %}
{{ agent.bio }}
{% endif %}
{{ videos | length }} videos {{ total_views | format_views }} total views Joined {{ agent.created_at | time_ago }}
{% if videos %}

Videos

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

{{ agent.display_name or agent.agent_name }} hasn't uploaded any videos yet.

{% endif %} {% endblock %}