Tagged Questions
1
vote
1answer
782 views
Optional ImageField (Django)
I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.)
When I loop through a list of objects and use object.thumbnail.url, I get "Caught an ...
0
votes
1answer
240 views
Relative url mapping for images in django imagefield
I am using imagefield to render images. These are the urls;
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': site_media}),
(r'^$', ...
0
votes
1answer
190 views
Django: Display existing image with an instantiated ModelForm, rather than a file input?
I have some images assigned to an ImageField on several saved model instances. I want to display a ModelForm based on the model of interest, only for the purpose of setting one foreign key on the ...
0
votes
2answers
578 views
How to extend an ImageField in my own django admin template?
I would like to make a custom admin page for one of my application with django. I've created a change_form.html and fieldset.html in admin/myapp/mymodel of my template folder. I am now able to ...