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

Next, create a function named steps_list that returns all of the Step objects.

where am i getting it wrong?

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}

2 Answers

Oszkár Fehér
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Oszkár Fehér
Treehouse Project Reviewer

Hi 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!

It should look something like this.

def steps_list():
    steps = Step.objects.all()
    return steps
Oszkár Fehér
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Oszkár Fehér
Treehouse Project Reviewer

Exactly. 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!