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/show_results.html | |
parent | 34965e2cdb026bfaf7facf5c520848ce19120251 (diff) |
added flask templates
Diffstat (limited to 'templates/show_results.html')
-rw-r--r-- | templates/show_results.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/show_results.html b/templates/show_results.html new file mode 100644 index 0000000..bd1b0a1 --- /dev/null +++ b/templates/show_results.html @@ -0,0 +1,24 @@ +{% extends 'base.html' %} + +{% block content %} + <h1>{% block title %} Results {% endblock %}</h1> + <main> + {% for deet in deets %} + <h2>{{deet["title"]}} ({{deet["year"]}})</h2> + <i>{{deet["tagline"]}}</i> - <i>{{deet["runtime"]}} min</i> + <p> + {{deet["overview"]}} + </p> + {% endfor %} + <h3>Advance Filters</h3> + <form action="{{url_for('get_similar_titles')}}" method="GET"> + <p><input type="hidden" name="trakt_id" value="{{deets[0]['trakt_id']}}"/></p> + <p>Minimum Year <input type="number" name="minYear" min="1900" max="2021" value="1900" /></p> + <p>Maximum Year <input type="number" name="maxYear" min="1900" max="2021" value="2021" /></p> + <p>Minimum Runtime <input type="number" name="minRuntime" min="1" value="70" /></p> + <p>Maximum Runtime <input type="number" name="maxRuntime" min="1" value="220" /></p> + <p><input type="hidden" name="filter" value="OwO" /> </p> + <p><input type="submit" value="Filter" /></p> + </form> + </main> +{% endblock %}
\ No newline at end of file |