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

Please Verify my understanding about DIY Template tag . Thank you

So if we want to write our custom template tag for each app ,

  1. we would create a templatetags directory in the app. 2.In this directory we would have a init.py file and a file to hold the custom template 2.import the library 3.write up the tag 4.register the tag (simple tag or inclusion tag)
  2. if simple : --Just load it to the template we want it to go if inclusion: -create a html file that cointain the context we want to display -then place the template tag in the desired place .

Thank you