{% extends 'layout.html' %} {% block title %}
{% for field in search_form %} {{ field }} {% endfor %}
{% endblock %} {% block content %} {% csrf_token %}
{% for clip in clips %}
Thumbnail for clip with title {{ clip.display_title }} {{ clip.created_at|date:"j.m.Y H:i" }} {{ clip.duration }} sec {{ clip.curator }}

{% if clip.category %} {{ clip.category }} {% else %}   {% endif %}

{{ clip.display_title }}

{% if allow_edit %}
{% if clip.is_in_loop %} {% else %} {% endif %} {% if clip.is_published %} {% else %} {% endif %}
{% endif %}

{% for tag in clip.tags.all %} {{ tag.name }} {% endfor %}

{% endfor %}
{% endblock %}