{% extends "base.html" %} {% block title %}{% trans %}Service list{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}all available services{% endtrans %}{% endblock %} {% block content %}
{% for service in services %} {% set app = application.registry.get(service.application_id) %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}Provider{% endtrans %} {% trans %}Application{% endtrans %} {% trans %}Policy{% endtrans %} {% trans %}Max profiles{% endtrans %} {% trans %}Actions{% endtrans %}
{{ service.name }} {{ service.provider }} {{ app.name }} {{ service.POLICIES[service.policy] }} {{ service.max_profiles }} Profiles  Edit  {% for action, (label, profile, quick) in app.actions.items() %} {% if quick and not profile %} {{ label }}  {% endif %} {% endfor %}
{% endblock %} {% block actions %} {% trans %}Create a service{% endtrans %} {% endblock %}