add epay models to admin
This commit is contained in:
parent
96582c93ae
commit
217d7d8af9
|
@ -1,7 +1,9 @@
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
from .models import Order, ProductCategory, Product, OrderProductRelation
|
from .models import Order, ProductCategory, Product, OrderProductRelation, EpayCallback, EpayPayment
|
||||||
|
|
||||||
|
admin.site.register(EpayCallback)
|
||||||
|
admin.site.register(EpayPayment)
|
||||||
|
|
||||||
@admin.register(ProductCategory)
|
@admin.register(ProductCategory)
|
||||||
class ProductCategoryAdmin(admin.ModelAdmin):
|
class ProductCategoryAdmin(admin.ModelAdmin):
|
||||||
|
|
Loading…
Reference in a new issue