{% extends "base.html" %} {% from "_macros.html" import status, sample_button %} {% block title %}First-run check — Video to LLM{% endblock %} {% set problems = problems | default([], true) %} {% block content %}

Is this computer ready?

Everything below runs here. Nothing is sent anywhere.

    {% for check in report.checks %}
  1. {{ "%02d"|format(loop.index) }}

    {{ check.title }}

    {{ {'ok':'Found','warn':'Worth a look','fail':'Needs setting up','optional':'Optional'}[check.state.value] }}

    {{ check.detail }}

    {% if check.remediation and check.state.value != 'ok' %}

    {{ check.remediation }}

    {% endif %}
  2. {% endfor %}
{% if problems %} {% endif %}
{% if report.ready %}

Ready to go

You can process video on this computer now. Descriptions are optional and can be switched on later without redoing any work.

Start a job {{ sample_button() }}
{% else %}

Not quite ready

Sort out the items marked above, then check again.

Check again {% endif %}
{% endblock %}