{% extends "base.html" %} {% block title %}ytclip — Library{% endblock %} {% block content %}

Library

New Clip
{% if clips %}
{% for item in clips %} {% set job = item.job %} {% endfor %}
Title File Duration Format Date
{{ job.video_title or "Unknown" }} {% if item.file_exists %} {{ (job.output_filename or "—")[:28] }}{% if (job.output_filename or "")|length > 28 %}…{% endif %} {% else %} missing {% endif %} {{ item.duration }} {{ job.output_format.value.upper() }} {{ job.created_at.strftime("%b %d, %H:%M") if job.created_at else "—" }} {% if item.file_exists %} {% endif %}
{% if has_prev or has_next %}
{% if has_prev %} Prev {% endif %} {% if has_next %} Next {% endif %}
{% endif %} {% else %}

No clips yet

Create your first clip →
{% endif %} {% endblock %}