{% extends "admin_base.html" %} {% load custom_filters %} {% load static %} {% block content %} Create a Topic Provide information about your topic. {% csrf_token %} {{ form.media }} Topic 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 %} Save and Add Another Save {% if success_message %} {{ success_message }} {% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% endblock %}
Provide information about your topic.
{{ error }}