I want to add some functionality in admin that allows me to upload file and then process it.
I already have a model that I can edit trough the admin, but I want to be able to “upload” multiple items with this file processing.
How can I achieve this in the admin?
The solutions I used is the one described in my comment. Create an empty model (with pass instead of fields), custom admin form and place your logic in the form.