Add comment in product type

This commit is contained in:
2017-10-22 21:10:02 +02:00
parent cd4b0d8e0c
commit 6113de33ec
4 changed files with 26 additions and 2 deletions

View File

@ -112,6 +112,7 @@ class ProductType(models.Model):
"""
name = models.CharField(_('name'), max_length=30)
description = models.TextField(_('description'), null=True, blank=True)
comment = models.TextField(_('comment'), null=True, blank=True)
icon = models.ImageField(upload_to='products', null=True, blank=True)
class Meta: