diff options
Diffstat (limited to 'example_project/settings.py.example')
-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 |