{% extends "base.html" %} {% block page_content %}
{% csrf_token %}

{{ form.non_field_errors }}

{{ form.query.errors }} {{ form.query }}

{% block body %} {% if images %} {% with num_results=images|length %}
{{ num_results }} result(s)
{% endwith %} {% for image in images %} Video: {{ image.title }} - Score: {{ image.score|floatformat:3 }} - Second: {{ image.time }} {% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %} {% else %}

No image available.

{% endif %} {% endblock body %} {% endblock %}