diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:40:12 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:40:12 -0600 |
commit | aaf1c40d86d8382040ff08ea3ad7b54809a624ff (patch) | |
tree | 3555a2aac50757cea9dff21bd293bbc48ad80903 /templates/same_titles.html | |
parent | 34965e2cdb026bfaf7facf5c520848ce19120251 (diff) |
added flask templates
Diffstat (limited to 'templates/same_titles.html')
-rw-r--r-- | templates/same_titles.html | 15 |
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 |