{% extends 'textrank/base.html' %}{% load i18n bootstrap4 html %} {% block content %}
{% trans 'группа' %} | {% if result.group %} {{ result.group.name }} score={{ result.group.score }}; found={{ result.found|length }} {% endif %} |
---|---|
{% trans 'раздел' %} |
{% if result.topic %}
{{ result.topic.name }} ({{ result.topic.code }} )
{% else %}
{% trans 'Основной' %}
{% endif %}
|
{% trans 'время обновления' %} | {{ result.utime }} |
{% trans 'время анализа' %} | {{ result.atime }} |
{% trans 'вес совпадений' %} | {% for word, weight in result.found.items %} {{ word }}={{ weight }}; {% endfor %} |
{% trans 'слова в тексте' %} | {% for word in result.words %} {{ word }} {% endfor %} |
{% trans 'морфологический поиск' %} | {% for word in result.morph %} {{ word }} {% endfor %} |
{% trans 'совпадения c другими группами' %} |
{% for other in result.other %}
{{ other.group.name }} score={{ other.group.score }}; found={{ other.found|length }} {% endfor %} |