﻿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
34826	Bounded Integer Range Field For Forms	Atufa Shireen	Atufa Shireen	"**Overview:**
There are fields in Django like integer range where lower bound is included but the upper bound is excluded. Therefore, the goal of this ticket is to introduce a new form field, BoundedRangeField, that extends Django's IntegerField to allow the creation of custom integer range fields in forms. This field will be particularly useful when you need to specify a specific range of integers for input in your forms.



**Usage:**
To use the BoundedRangeField, developers will be able to specify the minimum and maximum values for the integer range when defining form fields. For example:

{{{

my_field = BoundedRangeField(min_val=0, max_val=100)
}}}

This will create a form field that accepts integers between 0 and 100.

**Additional Notes:**

The proposed BoundedRangeField is designed to align with Django's form field conventions and maintain compatibility with database-related functionality.
Testing and documentation updates will be necessary to ensure proper integration and usage of this new field.

Please feel free to review and provide feedback on this proposal. Once the proposal is accepted, I will proceed with implementing the feature and submitting a pull request."	New feature	closed	Forms	4.2	Normal	wontfix	Forms, IntegerField, BoundedField, RangeField		Unreviewed	1	0	0	0	1	0
