ouhouhsami / django-progressbarupload

Progress bar upload for Django
BSD 3-Clause "New" or "Revised" License
88 stars 67 forks source link

Settings needs django.template.loaders.eggs.Loader if installed with easy_install #4

Closed rvl closed 7 years ago

rvl commented 11 years ago

Hi there,

This app looks promising.

If django-progressbarupload is installed with easy_install, then the TEMPLATE_LOADERS setting needs to have 'django.template.loaders.eggs.Loader'. Otherwise the template files can't be found because they are inside the egg zip file.

I am no fan of eggs but you might want to document this anyway. Or the other way is to put the template files in the package_data section of setup.py. This is the way django does it. Or I think the zip_safe=False setting in setup.py does the same thing.

Cheers,

Rodney