How to change the width of columns in the Admin listing in Django?

Asked

Viewed 169 times

3

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. Researching I found similar question here, where I came to the conclusion that I should extend the change_list.html file. 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 %}

Yet nothing happened.

1 answer

2


Try to put in style:

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.