darklow / django-suit

Modern theme for Django admin interface
http://djangosuit.com/
Other
2.32k stars 703 forks source link

django admin prepopulation broken #202

Open stevebma opened 10 years ago

stevebma commented 10 years ago

admin prepopulation with javascript is not working for me when using suit.

Uncaught TypeError: Object [object Object] has no method 'prepopulate'

This is likely due to conflicting jQuerys (it's included twice), is there any way to solve this?

thanks

stevebma commented 10 years ago

I was able to solve this by manually including it in the admin base template jQuery.fn.prepopulate = function(dependencies, maxLength) { .. } but this feels like a hacky solution..