|
|
@@ -1,7 +1,7 @@
|
|
1
|
1
|
from django.contrib import admin
|
|
2
|
2
|
|
|
3
|
3
|
from oscar.apps.promotions.models import Image, MultiImage, RawHTML, HandPickedProductList, OrderedProduct, AutomaticProductList, TabbedBlock, \
|
|
4
|
|
- PagePromotion, KeywordPromotion
|
|
|
4
|
+ PagePromotion, KeywordPromotion, SingleProduct
|
|
5
|
5
|
|
|
6
|
6
|
|
|
7
|
7
|
class OrderProductInline(admin.TabularInline):
|
|
|
@@ -33,5 +33,6 @@ admin.site.register(AutomaticProductList)
|
|
33
|
33
|
admin.site.register(TabbedBlock)
|
|
34
|
34
|
admin.site.register(PagePromotion, PagePromotionAdmin)
|
|
35
|
35
|
admin.site.register(KeywordPromotion, KeywordPromotionAdmin)
|
|
|
36
|
+admin.site.register(SingleProduct)
|
|
36
|
37
|
|
|
37
|
38
|
|