diff --git a/audio/templates/audio/feeds.html b/audio/templates/audio/feeds.html index d54ae11..15c0bb4 100644 --- a/audio/templates/audio/feeds.html +++ b/audio/templates/audio/feeds.html @@ -19,11 +19,11 @@
-
+

{{ i.created_on }}

-
-

Items

-

RSS

+
+

Items

+

RSS

diff --git a/audio/templates/audio/index.html b/audio/templates/audio/index.html index 735971d..97e26bf 100644 --- a/audio/templates/audio/index.html +++ b/audio/templates/audio/index.html @@ -35,11 +35,14 @@
-
+

{{ j.pub_date }}

-
-

Link

-

RSS

+
+

Link

+ {% if add_feed_link %} +

Feed

+ {% endif %} +

RSS

diff --git a/audio/views.py b/audio/views.py index 18529f6..412a001 100644 --- a/audio/views.py +++ b/audio/views.py @@ -11,7 +11,9 @@ def home(request): return render( request, 'audio/index.html', - {'episodes': episodes, 'IMAGES_URL': IMAGES_URL, 'MP3_URL': MP3_URL}) + { + 'episodes': episodes, 'IMAGES_URL': IMAGES_URL, + 'MP3_URL': MP3_URL, 'add_feed_link': True}) def feed(request, pk, slug):