{% extends "base.html" %} {% block title %} {{ cls_name }} {% endblock %} {% block content %}

Classifier: {{ cls_name }}

Estimated total matches: {{ est_total_matches }} ({{ '{:.2f}'.format(percentage) }}%)
{% include "patterns.html" %}

Sample matches

{% for match in matches %}
{% for rule in match['rules_triggered'] %} {{ rule }} {% endfor %} {{ match['text'] }}

{% for variable in match['variables'] %} {{ variable[0] }}: "{{ variable[1] }}" {% endfor %}

Change

{% endfor %} {% endblock %}