{% extends "base.html" %} {% block page_title %}All Spaces{% endblock %} {% block content %} {% include 'snippets/space_description.html' %}

Create new space

{% for s in spaces %}
Access Protocol
{{ s.get_access_protocol_display }}
Path
{{ s.path|default:"<None>" }}
Last Verified
{{ s.last_verified }}
{% for k, v in s.child.items %}
{{ k|capfirst }}
{{ v }}
{% endfor %}
Actions
{% empty %}

No spaces currently exist.

{% endfor %} {% endblock %}