Hi,
Django does not have any specific support for mongodb. Of course, you
can just use Django without its ORM, and simply use some other Python
library to access mongo.
There used to be a few projects trying to bring support for
nonrelational database (with most focus on mongo) to Django's ORM, but
the entire point of an ORM is sort of to serve as a layer on top of
relational data stores, and the last time I checked, neither of those
projects was maintained anymore.
May I ask if you have any specific reason to want to use mongo with
Django? If not, you're most likely better off using Postgres instead,
which has excellent support in Django.
Cheers,
Michal