6 changed files with 30 additions and 37 deletions
@ -1,22 +1,32 @@ |
|||||||
<!doctype html> |
<!doctype html> |
||||||
<title>{% block title %}{% endblock %} - video_metadata</title> |
<html> |
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
<head> |
||||||
<nav> |
<title>{% block title %}{% endblock %} - video_metadata</title> |
||||||
<h1>video_metadata</h1> |
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
||||||
<ul> |
</head> |
||||||
<li><a href="{{ url_for('index') }}">Home</a> |
<body> |
||||||
<li><a href="{{ url_for('file_listing.index') }}">File Listing</a> |
<nav> |
||||||
<li><a href="{{ url_for('tmdb.query_movie') }}">Query</a> |
<h1>video_metadata</h1> |
||||||
</ul> |
<ul> |
||||||
</nav> |
<li><a href="{{ url_for('index') }}">Home</a> |
||||||
<section class="content"> |
<li><a href="{{ url_for('file_listing.index') }}">File Listing</a> |
||||||
<header> |
<li><a href="{{ url_for('tmdb.query_movie') }}">Query</a> |
||||||
{% block header %}{% endblock %} |
</ul> |
||||||
</header> |
</nav> |
||||||
|
<section class="content"> |
||||||
|
<header> |
||||||
|
{% block header %}{% endblock %} |
||||||
|
</header> |
||||||
|
|
||||||
{% for message in get_flashed_messages() %} |
{% for message in get_flashed_messages() %} |
||||||
<div class="flash">{{ message }}</div> |
<div class="flash">{{ message }}</div> |
||||||
{% endfor %} |
{% endfor %} |
||||||
|
|
||||||
{% block content %}{% endblock %} |
{% block content %}{% endblock %} |
||||||
</section> |
</section> |
||||||
|
<section class="debug"> |
||||||
|
<h3>Debug Info</h3> |
||||||
|
<pre>{{ debug_str }}</pre> |
||||||
|
</section> |
||||||
|
</body> |
||||||
|
</html> |
||||||
|
|||||||
Loading…
Reference in new issue