{% extends "fluid.html" %} {% load i18n %} {% block page_title %}{% blocktrans %}{{ location }} Information{% endblocktrans %}{% endblock %} {% block content %}
{% trans "Space" %}
{{ location.space }}
{% trans "Purpose" %}
{{ location.get_purpose_display }}
{% trans "Description" %}
{{ location.description }}
{% trans "Full Path" %}
{{ location.full_path }}
{% trans "Relative Path" %}
{{ location.relative_path }}
{% trans "Usage" %}
{{ location.used|filesizeformat }} / {{ location.quota|filesizeformat }}
{% trans "Enabled" %}
{{ location.enabled|yesno:_("Enabled,Disabled") }}
{% trans "Default" %}
{{ location.default|yesno:_("Yes,No") }}
{% if location.purpose == 'RP' %} {% with location.masters.all as master_locations %}
{% trans "Master locations" %}
{% if master_locations %}
    {% for master in master_locations %}
  • {{ master }}
  • {% endfor %}
{% else %} There are none. {% endif %}
{% endwith %} {% else %} {% with location.replicators.all as replicator_locations %}
{% trans "Replicator locations" %}
{% if replicator_locations %} {% else %} There are none. {% endif %}
{% endwith %} {% endif %}
{% trans "Actions" %}

{% trans "Pipelines" %}

{% if pipelines %} {% include "snippets/pipelines_table.html" %} {% else %}

{% trans "No pipelines in this space." %}

{% endif %}

{% trans "Packages" %}

{% if package_count %} {% include "snippets/packages_table.html" %} {% else %}

{% trans "No packages in this space." %}

{% endif %} {% endblock %}