Is there an easy way to include file upload capabilities to the admin interface in Django? I saw this question but I'm not well versed in Javascript.
Is there any magick I can add to the models.py or admin.py files that will allow me to easily do this with Django's built in CMS system?
Background:
I'm trying to create a database of celebrities that include their bio, birth dates and I want to include a profile picture to go with it. This is part of a mini project I'm working on to brush up on my Django/Python.
Thanks.