Hello!

I have my own ModelForm with widgets in Meta class.

class Meta:

 model = Foods 

 fields = '__all__' 

 widgets = { 

 'quantity': NumberInput(attrs={'min': 1, 'max': 10, 'name': "quantity2"}), 

 'comment': TextInput(), 

 }


My quantity field have NumberInput as standard.

I want to redefine html properties such name and min value.

But when I did this (code above), my fiend quantity have old values (name 
and min value). Max value correct.

<p><label for="id_quantity">Quantity:</label> <input id="id_quantity" max="10" 
min="0" name="quantity" type="number" value="1" /></p>

Django (1.9.4)

What's wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/dc1f06a5-351c-4bbf-8fbb-8799baae41c3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to