Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello
How I'm can create a hidden field in django-admin without label? I'm know about exclude, but it exclude item from template.
I'm create a our form for admin model and want hide one field (foreignkey):

class OutForm(ModelForm):
    reply_to = forms.ModelChoiceField(queryset=InMessages.objects.all(), widget=forms.HiddenInput)

In admin template I'm get hidden field, but label not hide :(

share|improve this question

4 Answers

The Django admin does not support hidden fields yet. There is an open ticket for that: https://code.djangoproject.com/ticket/11277

However, there are workarounds that don't require jQuery. The admin forms are rendered using admin/includes/fieldset.html. If you override this template, you can inject a CSS class to denote the row for hiding:

<div class="form-row
    {% if line.fields|length_is:'1' and line.errors %} errors{% endif %}
    {% for field in line %} {{ field.field.name }}
      {% if field.field.is_hidden %} has-hidden-field{% endif %}  # add this part
    {% endfor %}">

this is actually a single line in the file, I've expanded it to make it more readable.

( Neat detail: for an StackedInline/TabularInline objects, you can specify the template as variable in Python code. )

Next, you can hide that row in your CSS:

.form-row.has-hidden-field {
    display: none;
}

Which you can load via your admin page:

{% block extrastyle %}{{ block.super }}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}mysite/admin.css" />{% endblock %}

or by using the media definition in the modeladmin:

class Media:
    css = {'all': ('mysite/admin.css',)
share|improve this answer
Not sure the .form-row.has-hidden-field technique works on all IE versions. – Pierre de LESPINAY Dec 8 '11 at 16:19
@Glide: IE6 only remembers the last class, reading it as ".has-hidden-field" so that is OK most of the time. IE7 and up support it properly. If this is a concern, you can rename the class to something unique, and always refer to that in the CSS. – vdboor Dec 8 '11 at 18:51

You're giving ModelForm in your example, not ModelAdmin you should be using for admin site.

Anyway, method of excluding some field is the same: specify it in exclude property:

class OutForm(ModelForm):
  class Meta:
    exclude = ["reply_to"]

or

class OutAdmin(ModelAdmin):
  exclude = ["reply_to"]

See Django documentation for details: http://docs.djangoproject.com/en/1.2/ref/contrib/admin/

share|improve this answer
3  
No, You maybe not understand me. Method exclude not create a hidden field, it exclude it from form and not show it in output page (in template) – gigimon Feb 15 '11 at 11:00

In the template, while displaying

{% for field in form.visible_fields %}
    {{ field.label_tag }} : {{ field }}
{% endfor %}

It will hide the hidden field labels.

share|improve this answer
awesome, it works! – Dragunov May 7 '12 at 12:10

Try adding label="" to your ModelChoiceField to make the label an empty string:

reply_to = forms.ModelChoiceField(queryset=InMessages.objects.all(), label="", widget=forms.HiddenInput)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.