﻿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
36725	Add documentation for HTML form field equivalents to Django form fields	Quinn-beep		"Currently, Django’s documentation explains the mapping between model fields and form fields, but it doesn’t provide a clear reference showing how Django form fields correspond to standard HTML form elements.

To make the documentation more accessible to beginners and web developers transitioning from raw HTML forms to Django forms, I propose adding a section (or table) that lists Django form fields and their equivalent HTML form field types.

This addition will help users quickly understand which Django field to use when they are familiar with basic HTML input types.

The proposed documentation enhancement includes a table similar to the one below:
| **Django Form Field**             | **HTML Equivalent** | **Example HTML Tag**                    |
| --------------------------------- | ------------------- | --------------------------------------- |
| `CharField`                       | Text input          | `<input type=""text"">`                   |
| `EmailField`                      | Email input         | `<input type=""email"">`                  |
| `BooleanField`                    | Checkbox input      | `<input type=""checkbox"">`               |
| `DateField`                       | Date input          | `<input type=""date"">`                   |
| `FileField`                       | File upload         | `<input type=""file"">`                   |
| `TextField`                       | Text area           | `<textarea></textarea>`                 |
| `ChoiceField`                     | Dropdown            | `<select><option>...</option></select>` |
| … *(and other relevant mappings)* |                     |                                         |
… (and other relevant mappings)		

This addition would be placed in the Forms documentation (likely docs/topics/forms/modelforms.txt) under a new section titled “HTML Form Field Equivalents in Django.”"	New feature	closed	Documentation	5.2	Normal	wontfix			Unreviewed	0	0	0	0	0	0
