How do I change the width of the columns in the Admin listing in Django?

Posted on

Question :

How do I specify the width for the columns that are displayed in the Admin listing, more precisely the ones I specify in list_display in admin.py. Searching a similar question here , where I came to the conclusion that I should extend the file change_list.html. So I created a file of the same name in the templates directory of my application with the following excerpt, where ‘price’ would be my column:

{% extends "admin/change_list.html" %}

{% block extrahead %}
  {{ block.super }}
  <style type="text/css">
    #price { width: 100px; }
  </style>
{% endblock %}

Nothing happened though.

    

Answer :

Try to put in style:

th.column-price{width:100px;}

    

Leave a Reply

Your email address will not be published. Required fields are marked *