From a9bcb94a0fb121a79164c9dd75e56c61f969e6ae Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sat, 10 Mar 2012 19:40:28 +0100 Subject: Correct path for share icons --- example_project/settings.py.example | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'example_project') diff --git a/example_project/settings.py.example b/example_project/settings.py.example index bac0369..6da66e1 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -118,13 +118,13 @@ MEDIA_URL = '/' + EXTRA_URL + 'media/' # share with SHARE_NETWORKS = ( ("Email", 'mailto:?subject=%(text)s&body=%(url)s', - MEDIA_URL + 'icons/email.png'), + STATIC_URL + 'icons/email.png'), ("Facebook", 'http://www.facebook.com/sharer.php?t=%(text)s&u=%(url)s', - MEDIA_URL + 'icons/facebook.png'), + STATIC_URL + 'icons/facebook.png'), ("Twitter", 'http://twitter.com/home?status=%(text)s %(url)s', - MEDIA_URL + 'icons/twitter.png'), + STATIC_URL + 'icons/twitter.png'), ("Identi.ca", 'http://identi.ca/index.php?action=newnotice&status_textarea=%(text)s %(url)s', - MEDIA_URL + 'icons/identica.png'), + STATIC_URL + 'icons/identica.png'), ) # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a -- cgit v1.2.3