annoying should use contrib choices

This commit is contained in:
Jeff Balogh 2010-01-04 14:03:39 -05:00
Родитель c8eab13e25
Коммит c413c7aa49
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -80,7 +80,8 @@ class Addon(amo.ModelBase):
paypal_id = models.CharField(max_length=255, blank=True)
suggested_amount = models.CharField(max_length=255, blank=True,
help_text="Requested donation amount.")
annoying = models.PositiveIntegerField(choices=STATUS_CHOICES, default=0)
annoying = models.PositiveIntegerField(choices=CONTRIBUTIONS_CHOICES,
default=0)
get_satisfaction_company = models.CharField(max_length=255, blank=True)
get_satisfaction_product = models.CharField(max_length=255, blank=True)