summaryrefslogtreecommitdiff
path: root/imdb-lookup/index.jinja2.html
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2014-11-25 20:24:30 +0100
committerYves Fischer <yvesf-git@xapek.org>2014-11-25 20:24:30 +0100
commit42411217a9a12d7fae7ec2b5fe6f0f8ee43c5d42 (patch)
tree1ea56b5c54d410996c8caa2fcb5e43d2db74dd27 /imdb-lookup/index.jinja2.html
parent11abdc80ba99b7e2456a4d85b187e2d07406ebb2 (diff)
downloadscripts-42411217a9a12d7fae7ec2b5fe6f0f8ee43c5d42.tar.gz
scripts-42411217a9a12d7fae7ec2b5fe6f0f8ee43c5d42.zip
list files
Diffstat (limited to 'imdb-lookup/index.jinja2.html')
-rw-r--r--imdb-lookup/index.jinja2.html31
1 files changed, 23 insertions, 8 deletions
diff --git a/imdb-lookup/index.jinja2.html b/imdb-lookup/index.jinja2.html
index 181e7ff..6eae465 100644
--- a/imdb-lookup/index.jinja2.html
+++ b/imdb-lookup/index.jinja2.html
@@ -31,15 +31,21 @@
min-height: 200px;
box-shadow: 0px 0px 5px 0px gray;
}
- .infos {
+ .info {
padding-left: 2em;
vertical-align: top;
}
- .infos table td { padding: .2em; }
+ .info table td { padding: .2em; }
+ .details { padding: 1em; }
+ .files {
+ list-style: none;
+ padding-left: 0px;
+ }
+ .files li:before { margin: 0 1em; content: '▶'; }
</style>
</head>
<body>
- {% for (filename, imdb_id) in input %}
+ {% for (path, imdb_id) in input %}
{% set info = tmdbcache.infos(imdb_id) %}</h2>
{% if info %}
{% set age = gmtime.tm_year - int(info['release_date'].split('-')[0]) %}
@@ -66,12 +72,12 @@
{% endif %}
<td class="poster">
{% if posterBase64 %}
- <a href="{{urlencode(filename)}}"><img src="{{ posterBase64 }}" /></a>
+ <a href="{{urlencode(path)}}"><img src="{{ posterBase64 }}" /></a>
{% else %}
<span> no image </span>
{% endif %}
</td>
- <td class="infos">
+ <td class="info">
<div style="font-size: 2em;">
{{ info.title }}
{% if info.title != info.original_title %}
@@ -79,7 +85,7 @@
{% endif %}
</div>
<div>{{ info.overview }}</div>
- <table style="padding: 2em;">
+ <table class="details">
{% if 'runtime' in info %}
<tr>
<td style="font-style: italic">Runtime</td>
@@ -107,14 +113,23 @@
<a href="http://www.ofdb.de/view.php?page=suchergebnis&Kat=IMDb&SText={{ info.imdb_id }}" rel="noreferrer">→ ofdb.db</a>
</td>
</tr>
- </table>
+ </table>
+ <ul class="files">
+ {% for file in listMovieFiles(path) %}
+ <li>
+ <a href="{{urlencode(file)}}">
+ {{ " → ".join(file.split("/")[1:]) }}
+ </a>
+ </li>
+ {% endfor %}
+ </ul>
</td>
</tr>
</table>
</div>
{% else %}
<div class="box error">
- No infos for {{filename}} {{imdb_id}}
+ No infos for {{path}} {{imdb_id}}
</div>
{% endif %}
{% endfor %}