* [x] Tested with the latest Haystack release **3.3.0** * [ ] Tested with the current Haystack master branch ## Expected behaviour Change list template same as Django original template. For example:  ## Actual behaviour Missing actions, select column and left sidebar after search  ## Steps to reproduce the behaviour ``` from haystack.admin import SearchModelAdmin from .models import MockModel class MockModelAdmin(SearchModelAdmin): haystack_connection = 'solr' date_hierarchy = 'pub_date' list_display = ('author', 'pub_date') admin.site.register(MockModel, MockModelAdmin) ``` ## Configuration * Search engine version: elasticsearch 7.17.12 * Python version: 3.12 * Django version: 5.0.1 * Haystack version: 3.3.0