benjaoming / django-relatedadminwidget

AS OF DJANGO 1.9 THIS PROJECT IS UNNECESSARY! Widget for displaying edit and delete links alongside foreign key admin widgets
40 stars 9 forks source link

Fixes Django 1.6 bugs. #3

Closed joelcrocker closed 10 years ago

joelcrocker commented 10 years ago

jQuery.live() is no longer available in Django's jQuery version, so jQuery.on() is used instead. Django's reverse() now urlencodes its result, which means the %s in the change/delete URL template also gets urlencoded. This is resolved by replacing the encoded %s with simply %s.

benjaoming commented 10 years ago

Tested that it still works on django 1.4.1 :)

benjaoming commented 10 years ago

Thanks and enjoy django 1.6 :)