23 lines
303 B
HTML
23 lines
303 B
HTML
|
<h1>Text Information</h1>
|
||
|
|
||
|
word count: {{ count }}
|
||
|
<br/>
|
||
|
<br/>
|
||
|
|
||
|
word dictionary: {{ worddict }}
|
||
|
<br/>
|
||
|
<br/>
|
||
|
|
||
|
{% for word, total in wordsorted %}
|
||
|
{{ word }} : {{ total }} <br/>
|
||
|
{% endfor %}
|
||
|
<br/>
|
||
|
<br/>
|
||
|
|
||
|
<h1>Your Text</h1>
|
||
|
{{ fulltext }}
|
||
|
<br/>
|
||
|
<br/>
|
||
|
|
||
|
<h2><a href="{% url 'home' %}">Another Run</a></h2>
|