Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

# -*- coding: utf-8 -*- 

from django.utils.translation import ugettext_lazy as _ 

from shop.models.defaults.bases import BaseProduct 

from shop.models.defaults.managers import ( 

    ProductManager, 

    ProductStatisticsManager, 

) 

 

 

class Product(BaseProduct): 

    objects = ProductManager() 

    statistics = ProductStatisticsManager() 

 

    class Meta(object): 

        abstract = False 

        app_label = 'shop' 

        verbose_name = _('Product') 

        verbose_name_plural = _('Products')