{% extends "base.html" %} {% load static from staticfiles %} {% block content %} {% if error_messages %}

Errors

{% endif %}

Fuzzy search result variants for concept {{concept}} within indexed documents (corpus)

Aggregation of analysis results not yet assigned to concept entry in thesaurus

Aggregated variants of all labels, alternate labels and hidden labels and all stemmers, compounded words by wildcards and fuzzy search results by edit distance: {% for result in aggregation_new %} {% endfor %}

Aggregation of analysis results

Aggregated variants of all labels, alternate labels and hidden labels and all stemmers, compounded words and fuzzy search by edit distance: {% for result in aggregation %} {% endfor %} This aggregate is result of all following search operations: {% for result, values in results.items %}

Analysis of {{ result }}

{% for stemmer, stemmed_values in values.items %}

Analysis of {{ result }} by {{stemmer}}

{% for stemmed in stemmed_values %}
  • {{ stemmed }} {% endfor %} {% endfor %} {% endfor %} {% endblock content %}