Lipau3n
Lipau3n

Reputation: 75

Django admin select all checkbox not working

I'm using Django 2.2.7 with python 3.8 in pipenv 2018.11.26. In my django admin i can't select all items checkbox (see pic below) in list of model objects and not see datepicker with actions "now" & "today".

Trouble with django admin select all checkbox

Upvotes: 1

Views: 873

Answers (1)

Lipau3n
Lipau3n

Reputation: 75

I found a place that causes this problem. In my settings.py:

FORM_RENDERER = 'django.forms.renderers.TemplatesSetting'

This setting override all widgets and his templates and therefore not work some of widgets in my django admin.

Upvotes: 2

Related Questions