{% extends 'dashboard/base/base.html' %} {% block title %} Categories | Dashboard {% endblock %} {% block custom_css %} .category_wrap{ display:flex; flex-wrap:wrap; } .category{ border-radius:15px; box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important; height:auto; background:white; box-sizing: border-box; padding: 15px; margin:5px; } .category span{ width:1px; height:1px; color:black; } {% endblock %} {% block body %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
Add Category
{% csrf_token %}
{% for cat in catagory %}

{{cat}}

{% endfor %}
{% endblock %}