﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21016	IntergerField not working? Confusing documentation?	anonymous	nobody	"I've read from the docs, that I can declare in my model IntegerFields with optional arguments:
max_value
min_value

In: https://docs.djangoproject.com/en/dev/ref/forms/fields/#integerfield

So I tried to make a model with the field:

my_number = models.IntegerField(verbose_name=u""Integer between 1 and 100"", min_value=1, max_value=100, blank=True, null=True)

Then I got the error:

my_number = models.IntegerField(verbose_name=u""Integer between 1 and 100"", min_value=1, max_value=100, blank=True, null=True)
TypeError: __init__() got an unexpected keyword argument 'max_value'

If I am doing something wrong, I think the doc should be improved."	Uncategorized	closed	Uncategorized	1.6-beta-1	Normal	invalid			Unreviewed	0	0	0	0	0	0
