user182945
user182945

Reputation: 1427

How to get form fields' id in Django

Is there any way to get the id of a field in a template?

In the HTML I get: <input name="field_name" id="id_field_name"...

I know I can get the name with {{ field.html_name }}, but is there anything similar for getting the id?
Or can I only get it like this: id_{{ field.html_name }}?

Upvotes: 116

Views: 73264

Answers (5)

qaz
qaz

Reputation: 39

From the documentation-

each form field has an ID attribute set to id_<field-name> , which is referenced by the accompanying label tag. This is important in ensuring that forms are accessible to assistive technology such as screen reader software. You can also customize the way in which labels and ids are generated.

So I would like to say id_field-name , you collect the field name from the model.

Here is the link to the documentation

Upvotes: 2

Eren S&#252;leymanoğlu
Eren S&#252;leymanoğlu

Reputation: 1254

You can also use id_for_label:

{{ field.id_for_label }}

Upvotes: 39

LondonAppDev
LondonAppDev

Reputation: 9633

In Django 2 you can retrieve the ID for a specific field using {{ field.id_for_label }}

This is documented here.

Upvotes: 1

kkaehler
kkaehler

Reputation: 533

This doesn't work for every form field.

For instance {{ form.address.auto_id }} works while {{ form.address.auto_name }} will not.

However you can use {{ form.address.html_name }} to get the equivalent answer.

Here are the docs

Upvotes: 13

Will Hardy
Will Hardy

Reputation: 14836

You can get the ID like this:

{{ field.auto_id }}

Upvotes: 199

Related Questions