1 {% extends
"base.html" %}
2 {% load url from future %}
7 {% block mainmenu %}{{
"/suggestions/"|main_menu }}{% endblock %}
8 {% block sectionmenu %}{{
"/suggestions/"|section_menu }}{% endblock %}
10 {% block title %}{% trans
"Suggested Podcasts" %}{% endblock %}
13 <h1>{% trans
"Suggested Podcasts" %}
</h1>
18 <table class=
"list podcast_list">
19 {% for podcast in entries %}
21 <td class=
"logo">{{ podcast|podcast_logo }}
</td>
23 <p class=
"title">{% podcast_group_link podcast %}
</p>
24 <p class=
"description">{{ podcast.description|striptags|truncatewords:
"12" }}
</p>
27 <a class=
"btn btn-success btn-small" href=
"{% podcast_link_target podcast "subscribe
" %}">
28 <i class=
"icon-ok"></i> {% trans
"Subscribe" %}
32 <form action=
"{% podcast_link_target podcast "suggestions-blacklist
" %}" style=
"display: inline;" >
34 <button class=
"btn btn-danger btn-small" type=
"submit">
35 <i class=
"icon-ban-circle"></i> {% trans
"No Interest" %}
43 {% trans
"No Suggestions Yet" %}
50 <a class=
"btn" href=
"{% url "suggestions-opml
" 15 "opml
" %}">
51 <i class=
"icon-download"></i>
52 {% trans
"Download OPML" %}
59 {% block javascript %}
61 <script language=
"javascript">
63 function submitForm(formid
)
65 document
.forms
[formid
].submit();