[Answer]-Custom Widget – How to correctly provide widget with args

1👍

It looks to my like the attributes that are being passed into your render method are the attributes from the field not the widget, try to change your print statement to print self.attrs, that will pick up the attributes that you passed into the constructor of your widget. Hope that makes sense?

Leave a comment