diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-10 19:40:28 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-10 19:40:28 +0100 |
commit | 2096f50a47215436636ef4196b80d5e81c2bada7 (patch) | |
tree | 3143c4b3dcdd89892566cc6140633dc0059fb01e | |
parent | dff1c99d55a64d1d44233b6cec9a2c6c4e2387a7 (diff) | |
download | Chimère - projet de référence-2096f50a47215436636ef4196b80d5e81c2bada7.tar.bz2 Chimère - projet de référence-2096f50a47215436636ef4196b80d5e81c2bada7.zip |
Correct path for share icons
-rw-r--r-- | settings.py.example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/settings.py.example b/settings.py.example index bac0369..6da66e1 100644 --- a/settings.py.example +++ b/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 |