File diff ea613bccb855 → cd77380eac27
pinaxcon/raffle/models.py
Show inline comments
...
 
@@ -11,6 +11,7 @@ class Raffle(RaffleMixin, models.Model):
 
    """
 
    description = models.CharField(max_length=255)
 
    products = models.ManyToManyField('registrasion.Product')
 
    hidden = models.BooleanField(default=True)
 

	
 
    def __str__(self):
 
        return self.description