I think the issue here is in how you're loading jQuery. It doesn't seem
like jQuery has been loaded successfully. Make sure the path to your jQuery
file is correct. This seems more like a client side issue rather than a
server side (Django) issue.
When Django sends the HTML response to your browse
The browser/client does not get two 'chunks' of HTML, Django renders the
entire page first and sends the entire rendered piece at once after
rendering both templates.
If you need your JS to be interpreted earlier, add an extra {% block %} to
template_A up in the section, and override that block r
2 matches
Mail list logo