1 {% extends 'base.html' %}
7 <h2>{% trans
"Search" %}
</h2>
9 <form method=
"get" action=
"." class=
"search">
11 {% for field in form %}
16 <input type=
"submit" value=
"Search">
20 <h3>{% trans
"Results" %}
</h3>
22 {% for result in page.object_list %}
24 {% ifequal result.model_name
"podcast" %}
25 <a class=
"podcast" href=
"/podcast/{{ result.pk }}">{{ result.object }}
</a>
26 <span class=
"description">{{ result.object.description|default:
""|truncatewords:
"15" }}
</span>
29 {% ifequal result.model_name
"episode" %}
30 {% ifchanged result.object.podcast %}
31 <a class=
"podcast" href=
"/podcast/{{ result.object.podcast.id }}">{{ result.object.podcast }}
</a>
33 <span class=
"episode">
34 <a class=
"episode" href=
"/episode/{{ result.pk }}">{{ result.object.title }}
</a>
35 <span class=
"description">{{ result.object.description|default:
""|truncatewords:
"15" }}
</span>