Fix small typo

This commit is contained in:
yeongkwang 2022-03-23 14:05:49 +09:00 committed by Hasan Ramezani
parent bb5f99533e
commit 8d8b6bad30

View file

@ -61,7 +61,7 @@ during the `register()` call.
sku = models.CharField(max_length=20)
version = models.CharField(max_length=5)
product = models.CharField(max_length=50, verbose_name='Product Name')
history = AuditLogHistoryField()
history = AuditlogHistoryField()
auditlog.register(MyModel, mapping_fields={'sku': 'Product No.', 'version': 'Product Revision'})