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 trialmaxwell ruzvidzo
6,822 Pointscreate an inclusion tag
Import the Step class from the models.py file in the courses directory.
Bummer: ModuleNotFoundError: No module named 'models'
code_challenges/courses/templatetags/course_extras.py
courses from django import template from models import courses
can smne help me please im stuck on task 2
from django import template
from models import courses
1 Answer
Alex Koumparos
Python Development Techdegree Student 36,887 PointsHi Maxwell,
For Task 2 you need to import the Step
class from the models.py
module which is in the courses
directory.
You are trying to import courses
from models
.
For the correct syntax think about how we import objects from Django modules that are not in the root of their package (such as from django.urls import reverse
).
Hope that points you in the right direction.
Cheers
Alex