{% extends "base.html" %} {% block title %}{{ service.name }}{% endblock %} {% block subtitle %}{% trans %}service details{% endtrans %}{% endblock %} {% block content %}

{% trans %}Attributes{% endtrans %}

{% trans %}Service name{% endtrans %}
{{ service.name }}
{% trans %}Description{% endtrans %}
{{ service.description }}
{% trans %}Provider{% endtrans %}
{{ service.provider }}
{% trans %}Application{% endtrans %}
{{ application.name }}
{% trans %}Application destriction{% endtrans %}
{{ application.__doc__ }}
{% trans %}UUID{% endtrans %}
{{ service.uuid }}

{% trans %}Advanced actions{% endtrans %}

{% for action, (label, profile, _) in application.actions.items() %} {% if not profile %}
{{ label }}
{{ function.__doc__ }}
{% endif %} {% endfor %}
{{ application.render_details(service) | safe }}
{% endblock %} {% block actions %} {% for action, (label, profile, quick) in application.actions.items() %} {% if quick and not profile %} {{ label }} {% endif %} {% endfor %} {% trans %}View profiles{% endtrans %} {% trans %}Change application{% endtrans %} {% trans %}Edit this service{% endtrans %} {% trans %}Delete this service{% endtrans %} {% endblock %}