Re: Django - Upload Image to the server with dimension

2015-12-29 Thread Rafael E. Ferrero
Hello Lekan, First of anything try to start a new e-mail for new questions... because yours don't have any relations with the root question. And try to tell uss if you know Django, if you readed Django Docs. Tell us more about your idea. Happy 2016 for you !! -- Rafael E. Ferrero 2015-12-29 9:31

Re: Django - Upload Image to the server with dimension

2015-12-29 Thread Lekan Wahab
Hello Guys. I have a website and am trying to build a rating system for the site. The system takes in user's rating and rewards them at the end of the month according to their ratings. I honestly dont know where to begin. i have searched for some things online but i still need help On Tue, Dec 29

Re: Django - Upload Image to the server with dimension

2015-12-29 Thread monoBOT
Take a look at this: http://djangothumbnails.com/ 2015-12-29 7:12 GMT+00:00 ken phanith : > I simply use ImageField from PIL package for Django Image Upload but it > does not satisfy me at all. I have a models class which contain many fields > including ImageField also. I am trying to upload 10

Django - Upload Image to the server with dimension

2015-12-29 Thread ken phanith
I simply use ImageField from PIL package for Django Image Upload but it does not satisfy me at all. I have a models class which contain many fields including ImageField also. I am trying to upload 10 images to the server but those images have the different dimension. I want to upload those image

Re: django upload image

2014-07-28 Thread Conner DiPaolo
I had a serious problem doing this. If your problem is similar to how mine was (static folder works but media folder doesn't) look at my Stack Overflow Question Best luck, Conner DiPaolo On Monday, July 28,

django upload image

2014-07-28 Thread ngangsia akumbo
please i need some help getting around with upload images i can put a background image on my site i can style it with css and others but when i upload images on my admin page , it does not get loaded on the page please need some help here -- You received this message because you are subscri

Re: Django Upload Image Help

2011-12-12 Thread Mike Dewhirst
On 13/12/2011 5:25am, cmc wrote: write_info = "name: %s\n caption: %s\n source: %s\n more_info: %s\n\n" % photo.name, caption, source, more_info and I've always had to put parentheses around the values on the right hand side of the % like this ... write_info = "name: %s\n caption: %

Re: Django Upload Image Help

2011-12-12 Thread Reinout van Rees
On 12-12-11 19:25, cmc wrote: I am trying to use django to upload images but its not working as expected. Here is what I'm working with Ehm, you're not telling us what goes wrong or unexpected :-) There's one thing that I see in your code that might be a problem: #handle_uploaded_image.py

Django Upload Image Help

2011-12-12 Thread cmc
I am trying to use django to upload images but its not working as expected. Here is what I'm working with #handle_uploaded_image.py def handle_uploaded_image(photo, caption, source, more_info): photo_dir = '%s/uploaded_photos/Not_Published/%Y/%m/%d' % settings.MEDIA_ROOT photo