remove print statement in logo.py
[mygpo.git] / mygpo / api / templates / podcasts.xml
blob8e0dd801f47c759ac2051ca79b3ca9fb0373b050
1 <podcasts>
2  {% for podcast in podcasts %}
3  <podcast>
4   <title>{{ podcast.title|default:"" }}</title>
5   <url>{{ podcast.url }}</url>
6   <website>{{ podcast.website|default:"" }}</website>
7   <mygpo_link>{{ podcast.mygpo_link }}</mygpo_link>
8   <description>{{ podcast.description|default:"" }}</description>
9   <subscribers>{{ podcast.subscribers }}</subscribers>
10   <subscribers_last_week>{{ podcast.subscribers_last_week }}</subscribers_last_week>
11   <logo_url>{{ podcast.logo_url|default:"" }}</logo_url>
12   <scaled_logo_url>{{ podcast.scaled_logo_url }}</scaled_logo_url>
13  </podcast>
14  {% endfor %}
15 </podcasts>