mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2024-11-16 22:29:25 +08:00
7 lines
200 B
Python
7 lines
200 B
Python
from django.contrib import admin
|
|
from simple_history.admin import SimpleHistoryAdmin
|
|
from .models import Product
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(Product, SimpleHistoryAdmin)
|