yillkid
unread,Jun 8, 2012, 5:37:20 AM6/8/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi all, I want to add a filter in my change list,
user can input maximum and minimum number,
after press ok button, template will render output data in change list.
There is my model.py :
class test(models.Model):
odd_even = models.DecimalField(max_digits = 2, decimal_places = 2)
I have already read the Django document, and still don't know how to do that.
Can anyone give me a hint ?