{% extends "base.html" %} {% load i18n %} {% block page_title %}{% blocktrans %}{{ pipeline.description }} Information{% endblocktrans %}{% endblock %} {% block content %}
{% trans "UUID" %}
{{ pipeline.uuid }}
{% trans "Description" %}
{{ pipeline.description|default:_("<None>") }}
{% trans "Remote name" %}
{{ pipeline.remote_name|default:_("<None>") }}
{% trans "API Username / Key" %}
{{ pipeline.api_username|default:_("<None>") }} / {{ pipeline.api_key|default:_("<None>") }}
{% trans "Enabled" %}
{{ pipeline.enabled|yesno:_("Enabled,Disabled") }}
{% trans "Actions" %}

{% trans "Locations" %}

{% if locations %} {% include "snippets/locations_table.html" with no_pipeline=True %} {% else %}

{% url 'space_list' as space_list_url %} {% blocktrans %}No locations currently exist. Please create one from the spaces page.{% endblocktrans %}

{% endif %} {% endblock %}