{% extends 'learning/base.html' %} {% block content %} {% load static %}

Manage Categories

{% csrf_token %}
{{ form.name.label_tag }} {{ form.name }} {% if form.name.errors %}
    {% for error in form.name.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.description.label_tag }} {{ form.description }} {% if form.description.errors %}
    {% for error in form.description.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

Existing Categories

{% endblock %}