{% extends "base.html" %} {% load i18n %} {% load url_tools %} {% load request_tools %} {% block title %} {% with request|tocorpus as corpus %} {% trans "Word Frequency" %} | Unitex/GramLab | {{ corpus.title }} | {{ block.super }} {% endwith %} {% endblock title %} {% block content %} {% with request|tocorpus as corpus %}

{% trans "Word Frequency" %} - {{ corpus.title }}


{% if words %} {% for word in words %} {% endfor %}
{% trans "Token" %} {% trans "Frequency" %}
{% with word.0|tojsonb64 as sentence_data %} {% endwith %} {{ word.0 }} {{ word.1 }}
{% else %} {% trans "Empty" %} {% endif %} {% endwith %} {% endblock content %}