Is there any way to get the id of a field in a template?
In the HTML I get:
I know I can g
In Django 2 you can retrieve the ID for a specific field using {{ field.id_for_label }}
{{ field.id_for_label }}
This is documented here.