Ticket #14372: 14372-admin-hiddenfield.diff

File 14372-admin-hiddenfield.diff, 797 bytes (added by Michael Newman, 14 years ago)

Simple check to is_hidden to determine if we should render the label.

  • django/contrib/admin/templates/admin/includes/fieldset.html

     
    1111                    {% if field.is_checkbox %}
    1212                        {{ field.field }}{{ field.label_tag }}
    1313                    {% else %}
    14                         {{ field.label_tag }}
     14                        {% if not field.field.is_hidden %}
     15                            {{ field.label_tag }}
     16                        {% endif %}
    1517                        {% if field.is_readonly %}
    1618                            <p>{{ field.contents }}</p>
    1719                        {% else %}
Back to Top