Displaying Categories using forloop in Django project not working
I am making an ecommerce website using Django, and for displaying categories as buttons in the navbar, I tried using a forloop, but its not working.
{% for category in categorys %} <li class="nav-item"><a class="nav-link" href="#">{{ category.name }}</a></li> {% endfor %}
I tried it with products and it worked.