Personal Video Database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
704 B

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}TMDB Query{% endblock %}</h1>
{% endblock %}
{% block content %}
{% if view_data|length == 0 %}
<form method="post" action="">
<label for="query">Search for movie</label>
<input name="query" id="query">
<input type="submit" value="Search">
</form>
{% else %}
<div id="search_results">
<h2>Query Results</h2>
{% for r in view_data %}
<div class="search_result">
<h3><a href="{{ r.tmdb_link }}">{{ r.title }}</a></h3>
<ul>
<li>Release Date: {{ r.release_date }}</li>
<li>Description:
<p>{{ r.overview }}</p>
</li>
</ul>
</div>
{% endfor %}
</div>
{% endif %}
{% endblock %}