django simple history doesn't show in admin
问题 I have followed the Django-simple-history documentation to display history from the admin page but somehow the history doesn't seem to appear from the admin page. I am using Django version 3.1.2 Here is my admin from django.contrib import admin from simple_history.admin import SimpleHistoryAdmin from .models import Company admin.site.register(Company, SimpleHistoryAdmin) 回答1: You can try this way: Suppose you have only one field in your Company model i.e name field so the model will look as