How can I create a fully hidden field (input and label) in the admin site? I know about the exclude property, but it fully excludes the field from the template,
exclude
In the template, while displaying
{% for field in form.visible_fields %} {{ field.label_tag }} : {{ field }} {% endfor %}
It will hide the hidden field labels.