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

Add Location

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

Existing Locations

{% for location in page_obj %} {% empty %} {% endfor %}
Location Name Actions
{{ location.name }} Edit Delete
No locations found.
{% endblock %}