aboutsummaryrefslogtreecommitdiff
path: root/templates/same_titles.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/same_titles.html')
-rw-r--r--templates/same_titles.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/same_titles.html b/templates/same_titles.html
new file mode 100644
index 0000000..b528020
--- /dev/null
+++ b/templates/same_titles.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+
+{% block content %}
+ <h1>{% block title %} Multiple Results {% endblock %}</h1>
+ <p>Multiple results found, please select the correct movie title.</p>
+ <main>
+ {% for deet in deets %}
+ <h2>{{deet["title"]}} ({{deet["year"]}})</h2>
+ <p><a href={{url_for('get_similar_titles',trakt_id=deet['trakt_id'])}}>Select This One</a></p>
+ <p>
+ {{deet["overview"]}}
+ </p>
+ {% endfor %}
+ </main>
+{% endblock %} \ No newline at end of file