summaryrefslogtreecommitdiff
path: root/templates/results.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/results.html')
-rw-r--r--templates/results.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/results.html b/templates/results.html
new file mode 100644
index 0000000..462bfb0
--- /dev/null
+++ b/templates/results.html
@@ -0,0 +1,17 @@
+{% extends 'base.html' %}
+
+{% block body %}
+
+<h2>{{ the_title }}</h2>
+
+<p>You submitted the following data:</p>
+<table>
+<tr><td>Phrase:</td><td>{{ the_phrase }}</td></tr>
+<tr><td>Letters:</td><td>{{ the_letters }}</td></tr>
+</table>
+
+<p>When "{{the_phrase }}" is searched for "{{ the_letters }}", the following
+results are returned:</p>
+<h3>{{ the_results }}</h3>
+
+{% endblock %}