Hello guys I am really thinking hard on this one I need help. How do I put the django-mptt in a nested dropdown. the recursetree tag when I put it in a bootstrap dropdown it comes out all jumbled up.
{% load mptt_tags %}
<ul>
{% recursetree category_list %}
<li>
{{ node.name}}</a>
{% if not node.is_leaf_node %}
<ul class="children">
<a href="{% url 'category_detail' id=node.id %}">
{{ children | lower}}</a>
</ul>
{% endif %}
</li>
{% endrecursetree %}
</ul>