1 {% extends
"base.html" %}
13 {{
"/share/"|main_menu }}
15 {{
"/directory/"|main_menu }}
19 {% block sectionmenu %}
21 {{
"/share/lists/"|section_menu }}
23 {{
"/lists/"|section_menu }}
28 {% blocktrans with podcastlist.title as list_title and owner.username as ownername %}
"{{ list_title }}" by {{ ownername }}{% endblocktrans %}
32 <h1>{{ podcastlist.title }}
</h1>
33 {% url
"user" owner.username as user-lists-url %}
34 <small class=
"description">
35 {% blocktrans with owner.username as ownername %}a podcast list by
<a href=
"{{ user-lists-url }}">{{ ownername }}
</a>{% endblocktrans %}
36 {% if podcastlist.get_rating %}
37 · {{ podcastlist.get_rating }}
<i class=
"icon-thumbs-up"></i>
48 <th>{% trans
"Podcast" %}
</th>
49 <th>{% trans
"Subscribers" %}
</th>
52 {% for entry in podcastlist.entries.all %}
55 <td class=
"logo">{{ entry.content_object|podcast_logo }}
</td>
57 {% podcast_group_link entry.content_object %}
59 <td>{% vertical_bar entry.content_object.subscriber_count max_subscribers %}
</td>
63 <form action=
"{% url "list-remove-podcast
" owner.username podcastlist.slug entry.order %}" method=
"post" target=
"_parent">
65 <button class=
"btn btn-danger btn-sm" type=
"submit" >
66 <i class=
"icon-remove"></i>
74 <td colspan=
"3">{% trans
"No Podcasts" %}
</td>
80 <form action=
"{% url "list-rate
" owner.username podcastlist.slug %}?rate=1" method=
"post" style=
"display: inline;" >
82 <button class=
"btn btn-default" type=
"submit">
83 <i class=
"icon-thumbs-up"></i>
88 <a class=
"btn btn-default" href=
"{% url "list-opml
" owner.username podcastlist.slug %}">
89 <i class=
"icon-download"></i>
90 {% trans
"Download as OPML" %}
99 <form method=
"get" action=
"{% url "list-search
" owner.username podcastlist.slug %}" class=
"form-inline" target=
"results">
100 <div class=
"input-group">
101 <span class=
"input-group-addon"><i class=
"icon-search"></i></span>
102 <input class=
"form-control" type=
"text" name=
"q" {% if q %}
value=
"{{ q }}"{% endif %}
placeholder=
"{% trans "Search term or feed URL
" %}" autofocus=
"autofocus">
103 <span class=
"input-group-btn">
104 <button class=
"btn btn-primary" type=
"submit">{% trans
"Search" %}
</button>
109 <iframe name=
"results" class=
"results">
119 {% if not is_own and user.is_authenticated %}
121 <h4>{% trans
"Your own Podcast Lists" %}
</h4>
122 <p>{% trans
"Create and share your own podcast lists "%}
</p>
123 <a class=
"btn btn-primary" href=
"{% url "lists-overview
" %}">{% trans
"Go" %}
</a>
130 {% block javascript %}
132 <script language=
"javascript">
134 function submitForm(formid
)
136 document
.forms
[formid
].submit();