{% extends "base.html.twig" %} {% block title %} {{ parent() }} {{"lst_collocations"|trans}} {% endblock %} {% block body %}

{{"lst_collocations"|trans}}

{{"frequency"|trans}} {{"loglike"|trans}} {{"collocation_structure_colloc"|trans}}
{% include "searchFilter.html.twig" %}
{% for collocation in collocations %} {% set freq = (collocation.nbOccurrences) ? collocation.nbOccurrences : 0 %} {% set loglike = (collocation.loglike) ? collocation.loglike : 0 %} {% set patron = (collocation.structureColloc) ? collocation.structureColloc|trans : null %}
{{collocation.value}}
{% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}