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 trial

Python Customizing Django Templates Building Custom Tags Create An Inclusion Tag

Django 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

code_challenges/courses/templatetags/course_extras.py
from django import template
from courses.models import Step
register=template.Library()
def steps_list():
    steps = step.objects.all()
    return {'steps': steps}

1 Answer

Hey, 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!

Thank you, I had not even noticed that one. Just did that, and it passed.