mb@mb
6 years ago
5 changed files with 68 additions and 3 deletions
@ -0,0 +1,18 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% block title %}{% endblock %} |
||||
|
|
||||
|
{% block txtlist %} |
||||
|
{% endblock %} |
||||
|
|
||||
|
{% block results %} |
||||
|
<h1>ordered.all</h1> |
||||
|
<div id="results" class="ordered all"> |
||||
|
<!-- {{results}} --> |
||||
|
{% for item in results %} |
||||
|
<span class="{{files[item[2]]}}"> |
||||
|
<strong style="font-size:{{item[0] * 50000}}%;"><a href="{{ url_for('index')}}?q={{item[1]}}">{{item[1]}}</a></strong> |
||||
|
</span> |
||||
|
{% endfor %} |
||||
|
<hr> |
||||
|
</div> |
||||
|
{% endblock %} |
@ -0,0 +1,20 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% block title %}{% endblock %} |
||||
|
|
||||
|
{% block txtlist %} |
||||
|
{% endblock %} |
||||
|
|
||||
|
{% block results %} |
||||
|
<h1>lists</h1> |
||||
|
<div id="results" class="ordered"> |
||||
|
{% for manifesto, words in results.items()|sort %} |
||||
|
<span class="manifesto"> |
||||
|
<h2 class="black">{{manifesto}}</h2> |
||||
|
{% for value, word in words %} |
||||
|
<strong style="font-size:{{value * 50000}}%;"><a href="{{ url_for('index')}}?q={{word}}">{{word}}</a></strong> |
||||
|
{% endfor %} |
||||
|
</span> |
||||
|
{% endfor %} |
||||
|
<hr> |
||||
|
</div> |
||||
|
{% endblock %} |
@ -0,0 +1,27 @@ |
|||||
|
{% 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 %} |
Loading…
Reference in new issue