You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
864 B
27 lines
864 B
{% extends "base.html" %}
|
|
{% block title %}{{query}}{% endblock %}
|
|
|
|
{% block txtlist %}
|
|
<div id="more-descr">[<span class="asterix">*</span>] The algorithm is asked to not return more than 3 sentences from the same manifesto. There are more sentences that match this search query!</div>
|
|
{% endblock %}
|
|
|
|
{% block results %}
|
|
<h1>The results for the query "{{query}}" are:</h1>
|
|
<div id="results" class="lists">
|
|
{% if results == {} %}
|
|
<div>That word is not used in any of the manifesto's.</div>
|
|
{% else %}
|
|
{% for _, manifesto in results.items() %}
|
|
<span class="result">
|
|
<h2 class="title">{{manifesto.name}}</h2>
|
|
<span class="list">
|
|
{% for i in range(manifesto.tf) %}
|
|
<strong style="font-size:{{manifesto.tfidf * 10000}}px;">{{query}}</strong>
|
|
{% endfor %}
|
|
</span>
|
|
</span>
|
|
{% endfor %}
|
|
<hr>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|