{% extends "admin_base.html" %} {% load custom_filters %} {% load static %} {% block content %} Create a Blog Category Provide details about your new blog category. {% csrf_token %} {{ form.media }} Category Title {{ form.title|add_class:"block w-full px-4 py-3 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-gray-400" }} {% if form.title.errors %} {% for error in form.title.errors %} {{ error }} {% endfor %} {% endif %} Create Blog Category {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% endblock %}
Provide details about your new blog category.
{{ error }}