Reputation: 75
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".
Upvotes: 1
Views: 873
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