2👍
✅
Not sure which version you’re using, but ModelAdmin probably has a setting that will help you.
Try something like this in admin.py:
class MyAdmin(admin.ModelAdmin):
....
actions_on_bottom = True
actions_on_top = False
Source:stackexchange.com