Django pdfs

2020-04-21 Thread Perceval Maturure
Hi Django Users I am developing a Django document management system which will cater for pdf file uploads. What is the best resource to use (tutorial) as I want to have the pdfs accessible from admin. Can I do this with Django filer Regards Perceval -- You received this message because you a

Re: Django pdfs

2020-04-22 Thread Hella Nick
me to。do you help me? Perceval Maturure 于2020年4月22日 周三07:31写道: > Hi Django Users > > I am developing a Django document management system which will cater for > pdf file uploads. What is the best resource to use (tutorial) as I want to > have the pdfs accessible from admin. Can I do this with Djan

Re: Django pdfs

2020-04-22 Thread Lunga Baliwe
Maybe you can check Django FileField for upload and check what it looks like on the admin side. On Wed, Apr 22, 2020 at 6:09 PM Hella Nick wrote: > me to。do you help me? > > Perceval Maturure 于2020年4月22日 周三07:31写道: > >> Hi Dj

Re: Django pdfs

2020-04-23 Thread Perceval Maturure
Hi Lunga When debug mode is False in production the url link of the file is not accessible in admin which is ok for security reasons but in admin I can download the file for preview Regards Perceval On Wed, 22 Apr 2020 at 18:39, Lunga Baliwe wrote: > Maybe you can check Django FileField >

Re: Django pdfs

2020-04-23 Thread Lunga Baliwe
Hi Perceval, On production I think you have to allow access to your MEDIA path, I normally do this on the apache config per site. Do you mind sharing your code or maybe screen shots of what appears on the admin screen. Also it maybe be worth to return a name or url path like __str__

Re: Django pdfs

2020-04-23 Thread Lunga Baliwe
Also check https://docs.djangoproject.com/en/3.0/ref/models/instances/#get-absolute-url Kind regards, Lunga Baliwe On Thu, Apr 23, 2020 at 1:04 PM Lunga Baliwe wrote: > Hi Perceval, > > On production I think you have to allow access to your MEDIA path, I > normally do this on the apache config

Re: Django pdfs

2020-04-23 Thread Lunga Baliwe
I don't know about the download button but the PDF file should be just a normal file like an image file Check this Django admin cookbook for working with django admin, there's an example of downloading a csv hopefully it

Re: Django pdfs

2020-04-23 Thread Perceval Maturure
thanks Lunga I will share once im done On Thu, Apr 23, 2020 at 2:35 PM Lunga Baliwe wrote: > I don't know about the download button but the PDF file should be just a > normal file like an image file > Check this Django admin >