MediaDash/templates/search/details.html

10 lines
202 B
HTML
Raw Normal View History

2021-08-29 13:03:28 +00:00
{% extends "base.html" %}
{% block app_content %}
<h1>{{info.title}} ({{info.year}})</h1>
<h2>{{info.hasFile}}</h2>
<p>{{info.id}}</p>
<pre>
{{info|tojson(indent=4)}}
</pre>
{% endblock %}