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.
39 lines
992 B
39 lines
992 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> |
|
<h3>Choose the description that matches the file</h3> |
|
<p>{{ rel_path }}</p> |
|
{% for r in view_data %} |
|
<div class="search_result"> |
|
<h3><a href="{{ r.tmdb_link }}">{{ r.title }}</a></h3> |
|
<ul> |
|
<li><a href="{{ url_for('tmdb.create_mapping', movie_id=r.id, rel_path=rel_path) |
|
}}">Click here to select</a></li> |
|
<li>Release Date: {{ r.release_date }}</li> |
|
<li>Description: |
|
<p>{{ r.overview }}</p> |
|
</li> |
|
</ul> |
|
</div> |
|
{% endfor %} |
|
</div> |
|
{% endif %} |
|
|
|
<div class="debug"> |
|
<h3>Debug Info</h3> |
|
<pre>{{ debug_str }}</pre> |
|
</div> |
|
{% endblock %}
|
|
|