4 <meta charset="utf-8"/>
5 <title>List of all your class</title>
10 {% for course, environments in courses %}
14 <li><a href=" {{ course.mainKey.url }}">Main SSH Key</a></li>
15 {# <li>{{ course.id }}</li> #}
16 <li><a href=" {{ course.lab.subject.url }}">Subject</a></li>
17 <li><a href="/ict_education/delete-course/{{ course.id }}">Delete Course</a></li>
18 <li><a href="/ict_education/renew-slice/{{ course.id }}">Renew-Slice</a></li>
20 {% for environment, slices in environments %}
21 {% if environment.ready %}
22 <li>Environment <a href="/ict_education/install-env/{{ environment.id }}">Re-install environment</a></li>
23 <li><a href=" {{ environment.sshKey.url }}">SSH Key</a></li>
25 {% for pleSlice, hosts in slices %}
26 <li>{{ pleSlice.sliceName }}</li>
28 {% for host, services, interfaces in hosts %}
29 <li>Hostname : {{ host.hostname }} Type : {{ host.hostType }}</li>
32 <li>Service List :</li>
34 {% for service in services %}
35 {% if service.servicePort == '' %}
36 <li>{{ service.serviceName }}</li>
38 <li>{{ service.serviceName }} on {{ service.servicePort }}</li>
44 <li>Interface List :</li>
46 {% for interface in interfaces %}
47 <li>{{ interface.name }} : {{ interface.ip }}</li>
57 <ul>Now installing this environment</ul>
58 <li>Environment <a href="/ict_education/install-env/{{ environment.id }}">Re-install environment</a></li>
63 <li>Course not ready</li>
64 <li>{{ course.ready }}</li>
70 <p>You have not created a class yet</p>