Is this the production server or the dev server? Assuming the
SVG file is just more static media, so you'll want to read up on
that. If it's the production server, make sure that you have it
serving the static media instead of handing it off to Django. If
it's the development server, make sure that you're serving static
files. I usually do this with something like
if 'runserver' in argv:
urlpatterns += patterns('',
(r'^site_media/(?P<path>.*)$',
'django.views.static.serve',
{'document_root': '../media'}
),
)
in my urls.py so that when I use the dev server, it also handles
static media.
If the SVG is dynamically created (yay, SVG!), make sure your
urls.py can find it and that you point to an appropriate view.
-tim
maybe some mime-type configuration missing?
--
Javier