[Fixed]-Is there any way to load a template dynamically inside of a static navbar template based on the current url?

1👍

You’re thinking about this the wrong way round: you should use template inheritance. Your view should render the specific template for that URL, but each template should in turn extend index.html which provides the sidebar and the rest of the structure.

Leave a comment