In this lesson, you’re going to see how to approach debugging, which is an important part of software development! In all_projects.html, you’re trying to display everything that you have available for one project that’s inside your database.
You’re missing an image. To add an image, you’re going to have to load the static files with a template tag at the beginning of your file:
{% load static %}
Thomas J Foolery on April 19, 2021
I’m still having trouble getting my static images to render. There’s clearly a path issue.
What should the “static path” look like in settings.py?