{% extends 'base.html' %} {% block title %}Parking Lots{% endblock %} {% block content %}

{{ parking_place.place_name }} - Parking Lots

Available
Occupied
{% for lot in parking_lots %}
{{ lot.lot_number }}
{% empty %}

No parking lots available.

{% endfor %}
{% if request.user.is_superuser %}
Add Parking Lots Manage Parking Lots
{% endif %}
{% endblock %}