Hi, I just started learning about custom tags in django and was wondering if there was a feature that allowed the injection of data as if they were blocks/tags.
The real problem is this, tags work great, but lets say my tag is some html and javascript, does that mean I have to call two tag functions and inject them into the page that way. It almost seems like the solution is to use a template where you fill in the blocks and it appends the data that way, but that can't do what the custom tags need to do. So how would you solve a problem like this?