I want to be able to upload .PDF files using the Django Admin interface and for those files to be reflected in a page on my website. Is this at all possible? If so, how do I do that? Otherwise, what could be a workaround for an admin user to privately upload files that will later be displayed in the site?
What I'm getting from the Django documentation on File Uploads is that the upload happens on the website itself, but I want to do this using the Admin interface so I know only an admin user can upload these files. Found this question but this dealt with images. Any sort of help would be highly appreciated.