Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGerardo Moxca Ruiz
5,490 PointsWhat's wrong with my code?
Can't figure out what's wrong with the permissions attribute on the Meta class. When checking my code it throws me:
Bummer: Try again!
from django.core.urlresolvers import reverse
from django.db import models
class Product(models.Model):
name = models.CharField(max_length=255)
description = models.TextField()
price = models.DecimalField()
discount = models.DecimalField(blank=True, null=True)
def __str__(self):
return self.name
def get_absolute_url(self):
return reverse("products:detail", kwargs={"pk": self.pk})
class Meta:
permissions = (
("can_give_discount", "...")
)
from django.contrib.auth.mixins import LoginRequiredMixin
from django.views import generic
from . import models
class List(generic.ListView):
model = models.Product
class Detail(generic.DetailView):
model = models.Product
class Create(LoginRequiredMixin, generic.CreateView):
fields = ("name", "description", "discount", "price")
model = models.Product
1 Answer
Jeff Muday
Treehouse Moderator 28,720 PointsThe class Meta permissions tuple has an issue-- you need an extra comma after the tuple. One of the odd parsing features of python is that it can't tell a single element tuple from an expression until there is another comma following it.
This should fix it.
class Meta:
permissions = (
("can_give_discount", "..."),
)
Gerardo Moxca Ruiz
5,490 PointsGerardo Moxca Ruiz
5,490 PointsThanks a lot!!!