{% extends "base.html" %} {% load static %} {% block title %}Brand Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% for brand in brands %} {% endfor %}
Image Name Description Status Actions
{% if brand.brand_image %} {{ brand.brand_name }} {% else %} No Image {% endif %} {{ brand.brand_name }} {{ brand.brand_description|truncatechars:50 }} {% if brand.status == 'active' %} Active {% else %} Inactive {% endif %}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}