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 trialCirrus Streamer
4,351 PointsCould not parse the remainder: '% course.title %' from '% course.title %'
"error during rendering template"
{{% course.title %}}
Tried all sorts to fix this though cant get around it, any ideas?
1 Answer
Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsHi Cirrus
Are you trying to print out the course title ? if so, you don't add the '%' when you want print something.
{{ course.title }}
Cirrus Streamer
4,351 PointsCirrus Streamer
4,351 PointsThanks Andreas!