[Fixed]-Using Django with Bootstrap Dynamic Tabs

1👍

Bootstrap dynamic tabs work by hiding/displaying inline content within specific divs. You will need to get that content loaded inline, either through some sort of script (like an AJAX request), or an iframe:

<div id="menu1" class="tab-pane fade">
  <iframe style="border:none" src="{% url 'incidents:report' %}"></iframe>
</div>

Leave a comment