I am working on a project, and my designer gave me the design, so I want to mimic the input forms which are in the design, to do that I need to add css in my form object.
If in the case of django function based view, It is easy to addcss by creating forms.py files and add css as follows. adding css class in django forms
I also tried to inject css class using jquery, but I couldn't succed. Injecting css class in html forms element using jquery
myapp/forms.py
But how do I add custom css in the form field, when using class based view.
class ItemUpdateView(UpdateView):
model = Item
fields = ('name','tag', 'category', 'company', 'price',)
How do I add the custom class to name, tag, category
field.