initial commit

This commit is contained in:
2020-03-07 21:35:38 -08:00
commit 925b0a2ec7
20 changed files with 354 additions and 0 deletions

22
templates/count.html Normal file
View File

@ -0,0 +1,22 @@
<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>