You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to switch of counting for a big model in the admin panel. When I set show_full_result_count = False for the model admin actions form disappeared from the list page. I think this a bug. The form does not disappear in this case with standard Django admin.
Then I found these lines from the source:
{% if action_form and actions_on_top and cl.full_result_count %}
{% admin_actions %}{% endif %}
{% result_list_with_context cl %}
{% if action_form and actions_on_bottom and cl.full_result_count %}
{% admin_actions %}{% endif %}
Could you please take out for checking for full_results_count on adding admin actions?
The text was updated successfully, but these errors were encountered:
Ibrohimbek
changed the title
Actions form is removed under the list when I set show_full_result_count = False for a model admin.
Actions form is disappeared under the list when I set show_full_result_count = False for a model admin.
Jul 10, 2020
I wanted to switch of counting for a big model in the admin panel. When I set
show_full_result_count = False
for the model admin actions form disappeared from the list page. I think this a bug. The form does not disappear in this case with standard Django admin.Then I found these lines from the source:
Could you please take out for checking for
full_results_count
on adding admin actions?The text was updated successfully, but these errors were encountered: