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

{{ service.verbose_name }}

{{ service.description }}

{% for saas in object_list %} {% empty %} {% endfor %} {% include "musician/components/table_paginator.html" %}
{% trans "Name" %} {% trans "Status" %} {% trans "Service" %} {% trans "Service info" %}
{{ saas.name }}
{% trans "Installed on" %}: {{ saas.get_site_domain|default:"-" }}
{{ saas.is_active|yesno }} {{ saas.service|capfirst }} {% trans "Open service admin panel" %} {% for key, value in saas.data.items %} {{ value }}
{% endfor %}
{# Translators: saas page when there isn't any saas. #} {% trans "Ooops! Looks like there is nothing here!" %}
{% endblock %}