By saying customize, I don't mean using list_display
and things like that.
My meaning of customizing is that I want a column which is not in the model.
The idea is, I want to create a column saying download and there's no such attribute named download in the model. It's just a an url that I want to customize myself which would show up in each row.
an easy example would be something like this in admin page in one of the random models. Let's say this is my Employee model. In my admin page it would show the name of the employee and at the right side I would like to create a download url myself which would export let's say the user's info. I do have the export codes ready and url ready too but I am not sure how to customize it in the admin page.
Model Employee
-------------------------------
name | download
-------------------------------
Goerge | download
Fluffy | download
Techy | download
Anyone got ideas how this can be done?
Thanks in advance