{% extends 'adminapp/master.html' %} {% load static %} {% load widget_tweaks %} {% block content %}

{{ title }}

Add New Category
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.name|add_class:"form-control rounded-pill shadow-sm" }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{% if 'image' in form.fields %}
{{ form.image|add_class:"form-control rounded-pill shadow-sm" }} {% if form.image.errors %}
{{ form.image.errors.0 }}
{% endif %}
{% if form.instance.image %}
Category Image
{% endif %} {% endif %}
{% endblock %}