{% extends "musician/base.html" %} {% load i18n %} {% block content %}

{{ service.verbose_name }}

{{ service.description }}

{% for saas in object_list %}
{{ saas.name }}
{% comment "Hidden until API provides this information" %}
{% trans "Installed on" %}: {{ saas.domain|default:"-" }}
{% endcomment %}

{{ saas.service|capfirst }}

{% trans "Service info" %}

{{ saas.is_active|yesno }}
{% for key, value in saas.data.items %} {{ value }}
{% endfor %}
{% empty %}

{# Translators: saas page when there isn't any saas. #}
{% trans "Ooops! Looks like there is nothing here!" %}
{% endfor %} {% endblock %}