How to render images on Django template
See my GitHub https://github.com/rg3915/gallery How to render images on Django template? But he is returning: Gallery media/3665_1280x800_8UX8tgG.jpg Tour de France media/281405_fSRBDZu.jpg bike of children How to render the images? Does the bug is in settings.py Regis da Silva urls.py from django.conf import settings from django.conf.urls import patterns, include, url from django.conf.urls.static import static from gallery.core.views import * from django.contrib import admin urlpatterns = patterns( 'gallery.core.views', url(r'^$', 'home', name='home'), url(r'^gallery/$', GalleryList.as_view()