film2.0/templates/search.html

22 lines
482 B
HTML

{% extends 'base.html' %}
{% block title %}{{ path }}{% endblock %}
{% block body %}
<form action="/search" method="GET">
<input type="text" name="q" value="{{ q }}"/>
<input type="submit" value="Buscar" />
</form>
<br />
<a href="/">&lt;--</a>
<br /><br />
{% for entry in list %}
<a href="{{ path_join(entry[0], entry[1]) }}"><span class="base_path">{{ entry[0] }}/</span>{{ entry[1] }}</a><br />
{% endfor %}
{% endblock %}