1 {% extends
"base.html" %}
2 {% load url from future %}
10 {% block mainmenu %}{{
"/toplist/episodes"|main_menu }}{% endblock %}
11 {% block sectionmenu %}{{
"/toplist/episodes"|section_menu }}{% endblock %}
13 {% block title %}{% trans
"Episode-Toplist" %}{% endblock %}
16 <h1>{% trans
"Episode-Toplist" %}
</h1>
21 <table class=
"list episode_list">
25 <th>{% trans
"Episode" %}
</th>
26 <th>{% trans
"Listeners" %}
</th>
28 {% for entry in entries %}
30 <td class=
"numeric toplist-pos">
31 {% ifchanged entry.listeners %}
35 <td>{{ entry.podcast|podcast_logo }}
</td>
36 <td>{% episode_link entry entry.podcast %}
<br/>
37 <span class=
"from_podcast">{% trans
"from" %} {% podcast_group_link entry.podcast %}
</td>
38 <td>{% vertical_bar entry.listeners max_listeners %}
</td>
42 {% trans
"Currently not available" %}
54 <h4>{% trans
"Language" %}
</h4>
55 <form class=
"form-inline" action=
"{% url "episode-toplist
" %}" method=
"get">
56 <select class=
"input-medium" name=
"lang">
57 {% if language ==
"" %}
58 <option selected=
"selected" value=
"">{% trans
"all" %}
</option>
60 <option value=
"">{% trans
"all" %}
</option>
63 {% for key, name in all_languages.iteritems %}
64 {% if language == key %}
65 <option selected=
"selected" value=
"{{ key }}">{{ name }}
</option>
67 <option value=
"{{ key }}">{{ name }}
</option>
71 <input class=
"btn btn-primary" type=
"submit" value=
"{% trans "OK
" %}" />