Hello Valéria,

That's Django's default, it doesn't handle media files by itself, if you
are in development you can add this line to urls.py

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

Don't forget you need to import static and settings:

from django.conf import settings
from django.conf.urls.static import static

That should work... For development only, in production use something like
Nginx or Apache



On Thu Feb 19 2015 at 11:03:32 AM Valéria Pacheco <
valeriacspach...@gmail.com> wrote:

> Hello! I'm a newbie in Django and Python, I'm trying to use the ImageField
> property.
> The problem is represented in the attachment images.
> The uploading of the image works fine, but when trying to access it, the
> link seems to be broken.
> I already checked for answers online but neither seems to work.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/8cf5041c-2ad7-40ec-9243-d4e1a928013e%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/8cf5041c-2ad7-40ec-9243-d4e1a928013e%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAeX05ErbyhORMmF87xZhRySkN7QHb3gzYT1u7x%3D9mDx27AS3w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to