0

I have created a common class with it's admin class which should be inherited by all of my models. My common admin class inherited the VersionAdmin

from reversion.admin import VersionAdmin

class CommonAdmin(VersionAdmin):   
    pass

The problem is that, the model admins which inherited CommonAdmin is not showing the deleted model entries in "Recover Items". But If I didn't use inheritance, it works fine.

flying sheep
  • 8,475
  • 5
  • 56
  • 73
Siva Arunachalam
  • 7,582
  • 15
  • 79
  • 132

1 Answers1

0

The following didn't run properly. It works fine now.

manage.py createinitialrevisions
flying sheep
  • 8,475
  • 5
  • 56
  • 73
Siva Arunachalam
  • 7,582
  • 15
  • 79
  • 132