DjanMon icon indicating copy to clipboard operation
DjanMon copied to clipboard

Demo showing how to use MongoDB with PyMongo from a Django project

Results 2 DjanMon issues
Sort by recently updated
recently updated
newest added

in settings.py modify: TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', 'django.template.loaders.app_directories.load_template_source', # 'django.template.loaders.eggs.load_template_source', ) to TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', # 'django.template.loaders.eggs.Loader', ) works in django1.4.3, but after I added the images, the...

http://github.com/vpulim/mango Mainly as an example.

TODO