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 trialElvin Mazwimairi
15,541 PointsDjango templates
Task4 of 5 : Next, create a function named steps_list that returns all of the Step objects.
I don't know where im wrong. please help
from django import template
from courses.models import Step
register=template.Library()
def steps_list():
steps = step.objects.all()
return {'steps': steps}
1 Answer
matth89
17,826 PointsHey, Elvin. Sorry for the late response. Your 'Step' model reference on line 5 needs to be capitalized, like it is where you imported it. Change that and it should pass. I hope this helps!
Elvin Mazwimairi
15,541 PointsElvin Mazwimairi
15,541 PointsThank you, I had not even noticed that one. Just did that, and it passed.