{% extends 'core/base.html' %} {% load static %} {% block title %}Add Item{% endblock %} {% block content %}

Add Item

{% csrf_token %} {{ form.as_p }}

Existing Items

{% for item in page_obj %} {% empty %} {% endfor %}
Item Name Actions
{{ item.name }} Edit Delete
No items found.
{% endblock %}