{% extends "base.html" %} {% load ch_extras %} {% load breadcrumbs %} {% block title %}Slice {{ slice.name }} in Project {{ slice.project.name }}{% endblock title %} {% block head %} {% endblock %} {% block content %}

Slice {{ slice.name }} in Project {{ slice.project.name }}

Delete slice

{% if request.user|is_super_user %}

Administration details

Project uuid: {{ slice.project.uuid }}

Project URN: {{ slice.project.urn }}

Slice uuid: {{ slice.uuid }}

Slice URN: {{ slice.urn }}

{% endif %}

Slice status

Description

Management

{% if not slice.started %} Slice not started {%else%} {% if not slice.modified %} Slice started and up-to-date {% else %} Slice started, but not up-to-date. Update slice. {% endif %} {% endif %} {{ slice.description }}
{% csrf_token %}
{% csrf_token %}
{# Topology #}

Physical topology

{% include "slice/topology.html" %} {# List of aggregates #}

Slice AMs and resource details

+ Add an Agregate Manager to the current slice
Below you can manage and add aggregates in your slice. You can only add resources to your slice from aggregates that have been added to the slice. When you add an aggregate to the slice you might be prompted for additional information that the aggregate needs about your slice.
{# Show message when no aggregates are added to the slice #} {% with slice.aggregates.all as aggregate_list %} {% if not aggregate_list.count %}

This slice has no aggregates added to it. To be able to reserve resources on aggregates, you shall add aggregates first ...

{% else %}
Click to expand/collapse
{# Begin: Aggregate details - loads templates from plugins - partial templates #} {% if plugin_template_list_network %}

Network resources

{% endif %} {% if plugin_template_list_computation %}

Computational resources

{# End: Aggregate details #} {% endif %} {% endwith %} {% endblock content %}