[Answered ]-Puzzled on best way to add document management to Django project

2👍

I haven’t personally used these apps, but Django Packages is always a good starting place. Have you looked at under Document Management?

Mayan (rtd, github, homepage) looks to be actively maintained and pretty mature.

The other two listed are django-treenav and django-file-picker, though they do not seem to be as robust or as actively maintained, but they may be a good fit given your basic needs.

Of course if your needs are simple it may be just as easy to implement it yourself, django model’s FileField is straightforward to use and they have great documentation on how to handle file uploads from forms – https://docs.djangoproject.com/en/dev/topics/http/file-uploads/.

Leave a comment