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 trialSavious Munyaradzi Ngundu
16,920 PointsNext, create a function named steps_list that returns all of the Step objects.
where am i getting it wrong?
from django import template
from courses.models import Step
register = template.Library()
def steps_list():
steps = step.objects.all()
return {'steps': steps}
2 Answers
Oszkár Fehér
Treehouse Project ReviewerHi Savious Munyaradzi Ngundu,
You are very close when you assign steps
you don't use the actual Step
class, double check what you use there.
The quiz asks
Next, create a function named steps_list that returns all of the Step objects.
not a dictionary of Step
objects, you return a dictionary, the return should be just simply the objects.
I hope this will help you out. Happy coding!
Carson Alexander
Python Web Development Techdegree Graduate 12,172 PointsIt should look something like this.
def steps_list():
steps = Step.objects.all()
return steps
Oszkár Fehér
Treehouse Project ReviewerExactly. Previously you used
steps = step.objects.all() <---- step instead of Step
return {'steps': steps} <---- just simply the steps objects as you wrote above
With the new code, you can pass the 4th section of the quiz. Happy codding!