У меня есть обычный admin.py с пользовательскими списками list_display, list_filter и search_fields, но проблема в том, что некоторые столбцы выглядят так ужасно, как я могу расположить их с фиксированной шириной или максимальной шириной и сохранить глаза людей?
img of ugly admin.py: img
class FollowUpsAdmin(admin.ModelAdmin):
list_display = ('user', 'company', 'contact_person', 'action', 'result', 'next_action', 'new_action_date', 'result_class', 'notes', 'is_active', 'updated_date', 'created_date')
list_filter = ('user', 'company', 'result_class', 'is_active')
search_fields = ('user__email', 'company__name', 'action', 'result', 'next_action', 'new_action_date', 'result_class', 'notes', 'is_active', 'created_date')
admin.site.register(FollowUp, FollowUpAdmin)