{% extends 'base.html' %} {% block title %}Edit Item{% endblock %} {% block content %}

Edit Item

Edit the details of the item you wish to update.

{% csrf_token %} {{ form.as_p }}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endblock %}