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 | a9bcb94a0fb121a79164c9dd75e56c61f969e6ae (patch) | |
tree | ce1f01c1cc9b700bee058845ec9ead71d0acb75a /example_project | |
parent | d06bfb396c24ac4168f85bbdf81b62bdfbef891c (diff) | |
download | Chimère-a9bcb94a0fb121a79164c9dd75e56c61f969e6ae.tar.bz2 Chimère-a9bcb94a0fb121a79164c9dd75e56c61f969e6ae.zip |
Correct path for share icons
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py.example | 8 |
1 files changed, 4 insertions, 4 deletions
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 |