1 {% extends
"base.html" %}
3 {% load url from future %}
11 {% block mainmenu %}{{
"/share/"|main_menu }}{% endblock %}
12 {% block sectionmenu %}{{
"/share/lists/"|section_menu }}{% endblock %}
14 {% block title %}{% trans
"Podcast Lists" %}{% endblock %}
17 <h1>{% trans
"Podcast Lists" %}
</h1>
24 {% for list in lists %}
26 <td><a href=
"{% url "list-show
" user.username list.slug %}">{{ list.title }}
</a></td>
27 <td>{% blocktrans with list.podcasts|length as num_podcasts %}{{ num_podcasts }} Podcasts{% endblocktrans %}
</td>
29 <form action=
"{% url "list-delete
" user.username list.slug %}" method=
"post">
31 <button class=
"btn btn-danger btn-small" type=
"submit">
32 <i class=
"icon-trash"></i> {% trans
"Delete" %}
39 <td colspan=
"3">{% trans
"You don't have any podcast lists yet." %}
</td>
51 <h4>{% trans
"Create List" %}
</h4>
52 <form class=
"form-inline" action=
"{% url "list-create
" %}" method=
"post">
54 <div class=
"input-append">
55 <input placeholder=
"Title" class=
"input-medium" type=
"text" name=
"title" />
56 <button class=
"btn btn-primary" type=
"submit">{% trans
"Create" %}
</button>
61 {% blocktrans %}Podcast Lists are intended to share podcasts about certain topics and are therefore always visible to everyone.{% endblocktrans %}