Skip to content

Django 5 admin changelist template not rendering actions and select column #2006

@Arti3DPlayer

Description

@Arti3DPlayer
  • 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:
Screenshot 2025-01-15 at 11 09 47

Actual behaviour

Missing actions, select column and left sidebar after search

Screenshot 2025-01-15 at 11 00 52

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions