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.

I've got a bit of Django form code that looks like this:

class GalleryAdminForm(forms.ModelForm):
    auto_id=False
    order = forms.CharField(widget=forms.HiddenInput())

And that makes the form field go away, but it leaves the label "Order" in the Django admin page. If I use:

order = forms.CharField(widget=forms.HiddenInput(), label='')

I'm still left with the ":" between where the field and label used to be.

How do I hide the whole thing?!

share|improve this question

7 Answers

up vote -2 down vote accepted

If you're using JQuery this should do the trick:

Your form

TO_HIDE_ATTRS = {'class': 'hidden'}
class GalleryAdminForm(forms.ModelForm):
    auto_id=False
    order = forms.CharField(widget=forms.TextInput(attrs=TO_HIDE_ATTRS))

Javascript code to add to your template

$(document).ready(function(){
    $('tr:has(.hidden)').hide();
});

That works if you're rendering your form as a table. If you want to make it work with any kind of form rendering you can do as follows:

$(document).ready(function(){
    $('{{ form_field_container }}:has(.hidden)').hide();
});

And add form_field_container to your template context. An example:

If you render your form like this:

    <form>
        <span>{{ field.label_tag }} {{ field }}</span>
    </form>

Your context must include:

'form_field_container': 'span'

You get the idea...

share|improve this answer
A more generic jQuery solution would be to do $('.hidden').parent().hide() since that will hide the whole div that contains the widget, the label, and any help text. It's a working solution for sure. I knew about adding custom attrs to the widget, but was trying to do the whole thing without resorting to JS. I'm just surprised Django didn't have a built-in way to do this. – Gabriel Hurley Sep 12 '09 at 23:24
Yes,$('.hidden').parent().hide() also works, but relies in the fact that the parent of your field also contains the label. If you had something like <tr><td>LABEL</td><td>FIELD</td></tr>` it wont work because parent would be the TD tag not the TR one. I'm also surprised that there's no "django way" to do this. – Guillem Gelabert Sep 13 '09 at 10:02
1  
Insane.. solution - Its like firing at flies ! – Yugal Jindle Sep 11 '12 at 4:46
Agree with @YugalJindle. There is nothing to do with jQuery if it can be solved in a cleaner way with template tags like {% if not field.is_hidden %}{{ field.label }}:{{ field }}{% else %}{{ field }}{% endif %} – Erwin Julius Feb 22 at 11:22

I can't believe several people have suggested using jQuery for this...

Is it a case of: when the only tool you know is a hammer everything looks like a nail?

Come on, if you're going to do it from the client-side (instead of fixing the source of the problem in the back-end code) surely the right place to do it would be in CSS?

If you're in the admin site then it's a bit harder but if it's a regular page then it's easy to just omit the whole label from the form template, eg http://docs.djangoproject.com/en/1.2/topics/forms/#customizing-the-form-template

If you're in the admin site then you could still override the as_table, as_ul, as_p methods of BaseForm (see django/forms/forms.py) in your GalleryAdminForm class to omit the label of any field where the label is blank (or == ':' as the value may be at this stage of rendering)

(...looking at lines 160-170 of forms.py it seems like Django 1.2 should properly omit the ':' if the label is blank so I guess you're on an older version?)

share|improve this answer
I guess you must be in the admin, the code pointed out by @Tonino above hard-codes a colon into the label when it's an admin form and bypasses the regular form mechanics. I guess I'd just use CSS in that case. – Anentropic Nov 22 '10 at 14:22

Oraculum has got it right. You shouldn't be cleaning this up on the client side. If it is clutter, then you shouldn't be sending it to client at all. Building on Oraculum's answer, you should use a custom form template because you you probably still want the hidden values in the form.

{% for field in form.visible_fields %}
    <div>
        {{ field.errors }}
        <span class="filter-label">{{ field.label_tag }}</span><br>
        {{ field }}
    </div>
 {% endfor %}

 {% for field in form.hidden_fields %}
     <div style="display:none;">{{ field }}</div>
 {% endfor %}

Using a custom form template to control hidden fields is cleaner because it doesn't send extraneous info to the client.

share|improve this answer

Try

{% for field in form.visible_fields %}

share|improve this answer
Have an upvote. I can't believe the JQuery kludges and CSS hacks are getting upvoted. This is a much nicer solution. – jozzas Sep 11 '12 at 11:52
I would vote on it, but it leaves hidden fields away. More complete solution from @emispowder. – Erwin Julius Feb 22 at 11:24

I think it's simpler to achieve the ":" label omission for HiddenInput widget by modifying class AdminField(object) in contrib/admin/helpers.py from :

    if self.is_checkbox:
        classes.append(u'vCheckboxLabel')
        contents = force_unicode(escape(self.field.label))
    else:
        contents = force_unicode(escape(self.field.label)) + u':'

to :

    if self.is_checkbox:
        classes.append(u'vCheckboxLabel')
        contents = force_unicode(escape(self.field.label))
    else:            
        contents = force_unicode(escape(self.field.label))
        #MODIFIED 26/10/2009
        if self.field.label <> '':
           contents += u':'
        # END MODIFY
share|improve this answer
That's a good way to do it, though I'm not a fan of modifying anything in the django core. Could probably subclass the object and achieve the same effect that way though. – Gabriel Hurley Oct 27 '09 at 0:50

Check the answer at Create a hidden field in django-admin, it can be done without JavaScript by overriding admin/includes/fieldset.html From there, you can inject a CSS class, and do the rest.

share|improve this answer

Another jQuery alternative that works for me in forms in django.contrib.admin (assumes you've got jQuery loaded):

$(".form-row:has(input[type=hidden])").hide();
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.