Is there way to find untranslated strings in the HTML templates of my Django application i.e. blocks of text that are not wrapped in trans and blocktrans<
trans
blocktrans<
You can use the builtin template parser to parse your templates, and recurse into all tags that are not instances of BlockTransTag
BlockTransTag