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

{% trans "Create new space" %}

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

{% trans "No spaces currently exist." %}

{% endfor %} {% endblock %}