{% extends "front/front_base.html" %} {% load i18n %} {% load thumbnail %} {% load static %} {% load front_tags %} {% block title %}Lignes de temps : {% trans 'search' %} "{{search}}" {% endblock %} {% block js_import %} {{block.super}} {% endblock %} {% block css_import %} {{block.super}} {% endblock %} {% block js_declaration %} {{block.super}} {% endblock %} {% block body %} {{block.super}} {% if msg %} {{ msg }} {% else %} {% ifequal nb_results 0 %} {% if tag_label %} {% blocktrans %} No results for {{ search }} with the medias tagged {{tag_label}}{% endblocktrans %}
{% trans "See for all medias" %} {% else %} {% blocktrans %} No results for {{ search }}.{% endblocktrans %} {% endif %} {% else %}
    • {% if tag_label %} {% trans "Search results for " %} {{ search }} > {{tag_label}} {% else %} {% trans "Search results for " %} {{ search }} {% endif %}

    • {{ nb_results }} {% trans "Result" %}{{ nb_results|pluralize }}

      {{ nb_segment }} {% trans "Segment" %}{{ nb_segment|pluralize }}

  • {% autoescape off %} {% for res in results.object_list %}
  • {{res.content.title}}

    {{res.content.duration|str_duration:"::" }}

  • {% endfor %} {% endautoescape %}
  • {% if results.has_previous %} {% trans "previous" %} . {% endif %} {% if results.paginator.num_pages > 1 %} {% for i in results.paginator.num_pages|get_range %} {% if i|add:'1' == results.number %} {{i|add:'1'}} {% else %} {{i|add:'1'}} {% endif %} {% if i|add:'1' < results.paginator.num_pages and 1 < results.paginator.num_pages %} {% endif %} {% endfor %} {% endif %} {% if results.has_next %} {% trans "next" %} {% endif %}

{% endifequal %} {% endif %} {% endblock %}