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.
35 lines
774 B
35 lines
774 B
{% extends 'base.html' %} |
|
|
|
{% block header %} |
|
<h1>{% block title %}TMDB Query{% endblock %}</h1> |
|
{% endblock %} |
|
|
|
{% block content %} |
|
{% if view_data.raw_query_str == '' %} |
|
<form method="get"> |
|
<label for="query">Search for movie</label> |
|
<input name="query" id="query"> |
|
<input type="submit" value="Search"> |
|
</form> |
|
{% endif %} |
|
|
|
<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.description }}</p> |
|
</li> |
|
</ul> |
|
</div> |
|
{% endfor %} |
|
</div> |
|
|
|
<div class="debug"> |
|
<h3>Debug Info</h3> |
|
<pre>{{ debug_str }}</pre> |
|
</div> |
|
{% endblock %}
|
|
|