I realize that templatetags are mainly used specific to applications which are INSTALLED_APPS, such as articles/templatetags/, but in my case I need tags for generic things such as navigation which doesn't have an application.
I'm currently keeping templatetags
in my project dir. and in order for it to get picked up I added my project to INSTALLED_APPS
- this works but I'm not sure if this was the right thing to do - are there any downsides?