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 DIY Custom Tags

Description Typo?

Hi, Chris Freeman

FYI, the video description states: "...Build a template tag that will provide you with a link to the newest course in our library at all times." However, we ended up not using an anchor tag to link to the newest course. This description may need a slight wording change... just happen to noticed it. Hope it helps! Thanks, D.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

I see your point. "Link" can be read as a HTML hyperlink or, more generally, as a database connection. Looking at the Workspace for video, the Courses model only has the attributes: created_at, title, and description, with the __str__ method returning self.title. In this case, there isn't a URL attribute available to use in an HTML link, so I would assume the general connotation of a link.

In a way, it's the curse of jargon vs every day word use. The technologist always hears the jargon definition first! Here it is an understandable misreading.

Oh, ok- thanks, Chris!