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

Buildings

Add Building
{% if buildings|length > 1 %}
{% endif %}
{% for building in buildings %}
{{ building.name }}

{{ building.location }}

Caretaker: {{ building.caretaker|default:"Not Assigned" }}

Manage Units
{% empty %}

No buildings created yet.

{% endfor %}
{% endblock %}