Merge pull request #793 from gpodder/remove-advertise
[mygpo.git] / mygpo / api / templates / podcasts.xml
blob1fcfa68ca296a3d3ba974ed442901b4af2061b4e
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   <author>{{ podcast.author|default:"" }}</author>
9   <description>{{ podcast.description|default:"" }}</description>
10   <subscribers>{{ podcast.subscribers }}</subscribers>
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>