category_create.html 308 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% load django_bootstrap5 %}
  4. {% block page_title %}Create category{% endblock %}
  5. <form action="" method="post">
  6. {% csrf_token %}
  7. {% bootstrap_form form %}
  8. {% bootstrap_button button_type="submit" content="Submit" %}
  9. </form>
  10. {% endblock content %}