Re: Pasting images versus uploading

2020-10-16 Thread Mike Dewhirst
09:28 (GMT+10:00) To: django-users@googlegroups.com Subject: Re: Pasting images versus uploading On Fri, Oct 09, 2020 at 06:22:10PM +1100, Mike Dewhirst wrote:> On 9/10/2020 11:55 am, Ryan Nowakowski wrote:> > Maybe you could swap out the default ImageField widget for> > Ti

Re: Pasting images versus uploading

2020-10-14 Thread Ryan Nowakowski
On Fri, Oct 09, 2020 at 06:22:10PM +1100, Mike Dewhirst wrote: > On 9/10/2020 11:55 am, Ryan Nowakowski wrote: > > Maybe you could swap out the default ImageField widget for > > TinyMCE-lite HTMLField? Security-wise you probably want to sanitize > > the input from HTMLField in Django to make sure o

Re: Pasting images versus uploading

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Fri, 9 Oct 2020, 12:53 pm Mike Dewhirst, wrote: > On 9/10/2020 11:55 am, Ryan Nowakowski w

Re: Pasting images versus uploading

2020-10-09 Thread Mike Dewhirst
On 9/10/2020 11:55 am, Ryan Nowakowski wrote: > Maybe you could swap out the default ImageField widget for > TinyMCE-lite HTMLField? Security-wise you probably want to sanitize > the input from HTMLField in Django to make sure only img tags are allowed. With the image pasted in, viewing the browse

Re: Pasting images versus uploading

2020-10-08 Thread Ryan Nowakowski
Maybe you could swap out the default ImageField widget for TinyMCE-lite HTMLField? Security-wise you probably want to sanitize the input from HTMLField in Django to make sure only img tags are allowed. On October 7, 2020 7:02:16 PM CDT, Mike Dewhirst wrote: >Users need to include an image of a

Pasting images versus uploading

2020-10-07 Thread Mike Dewhirst
Users need to include an image of a molecular structure in a project I'm building. These are small enough that I could limit the size without restricting functionality. The image needs to be printed out for a report. What is the best approach? I have implemented a TinyMCE-lite HTMLField which acc