{% extends "base.html" %} {% block title %}{{ service.name }}{% endblock %} {% block subtitle %}{% trans %}service details{% endtrans %}{% endblock %} {% block content %}
{% 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 }}
{{ application.render_details(service) | safe }}
{% endblock %} {% block actions %} {% trans %}View profiles{% endtrans %} {% trans %}Change application{% endtrans %} {% trans %}Edit this service{% endtrans %} {% trans %}Delete this service{% endtrans %} {% endblock %}