1👍
✅
Sure you can get all the functionality that Django admin has.
- That’s how actions history is displayed in template: link. This what
action_list
is, that is rendered in template: link. And finally,LogEntry
model is fully described indjango.contrib.admin.models
. - As the first point is described, you can find the information about authentication, as @user2976657 pointed you can find it in the docs, or run through source code
Source:stackexchange.com