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.