use django.contrib.staticfiles everywhere
[mygpo.git] / mygpo / web / templates / user_subscriptions.opml
blob57f4c9f96e519c4c0f18aa63fd9d838a7a9daa2e
1 <opml version="2.0">
2 <head>
3     <title>{{ other_user.username }}'s Subscriptions</title>
4 </head>
5 <body>
6   {% for podcast in subscriptions %}
7     <outline title="{{ podcast.title }}" text="{{ podcast.description|truncatewords:"20" }}" type="rss" xmlUrl="{{ podcast.url }}" htmlUrl="{{ podcast.link }}"/>
8   {% endfor %}
9 </body>
10 </opml>