{% extends "base.html" %} {% from "_macros.html" import status, empty %} {% block title %}Earlier work — Video to LLM{% endblock %} {% block content %}

Work brought in from before

Already-processed videos you can use in a collection without doing them again.

{% if imports %} {% for row in imports %} {% endfor %}
Imported videos
VideoVersionState Brought in
{{ row.name }} v{{ row.version }} {{ status(row.status) }} {{ row.when }}
{% else %} {{ empty("Nothing brought in yet.", "Run: video-to-llm import to bring in output from an earlier run.") }} {% endif %}
{% endblock %}