In this lesson, you’re going to look at how to build routes. In the previous lesson, you tried a URL that doesn’t exist and got an error message that told you to check portfolio.url.
When you check that file, you can see all of the URL patterns that exist there. If you try to go to /projects, then you’ll see that it isn’t registered anywhere, so Django doesn’t know what to do with it. Fortunately, Django provides a lot of useful information in the comment at the top of that file.
Martin Breuss RP Team on Aug. 12, 2020
Hello @eddhyne! But they really are friendly 🤗
While I don’t exactly know what’s happening here, I would look closer at this line:
This sounds to me like like the file you were working on,
urls.pyin yourprojectsapp might not have been saved correctly and the project overall is not aware of its existence.What happens when you save your file and restart the development server?