{% extends "service/master.html"%} {% block title %}{{ project.getLabelValue|escape }} - Services - List{% endblock %} {% block content %}

Project Services

{% if project.services %}

Here are all the services of {{ project.getLabelValue|escape }}.

{% for service in project.services %} {% endfor %}
Service name Type Actions
{{ service.name }} {{ service.plugin.name }} {% if view.canUpdateService %} {% if view.canDeleteService %} Remove   {% endif %} Edit {% endif %}
{% else %}

There are no services for this project at this time.

{% endif %} {% if view.canCreateService %}

Create new service

{% endif %} {% endblock %}