What does the Django admin's list_display option do?
- A Filters the queryset
- B Controls which fields appear as columns in the change list
- C Sets the page title
- D Restricts editing permissions
Answer
Controls which fields appear as columns in the change list
list_display accepts model fields, callables and model methods. list_filter and search_fields add filtering and search to the same view.





