X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Ftemplates%2Fhome-view.html;h=379547cc32cc83e42cfc68330e561d3a4853d7c3;hb=c72cc9989a2947881417197a2ebe0c9398b0bf4f;hp=c5f3bfc679a0378dff22bfad1d72f52f1e99c912;hpb=d1197c134b70bda643a752bdaf891190cb5a15e7;p=unfold.git diff --git a/portal/templates/home-view.html b/portal/templates/home-view.html index c5f3bfc6..379547cc 100644 --- a/portal/templates/home-view.html +++ b/portal/templates/home-view.html @@ -1,30 +1,204 @@ -{# fine for either layout-unfold1.html (logged in) or layout-unfold2.html (needs a login prompt) #} -{% extends layout_1_or_2 %} - -{% block unfold_margin %} -{% include 'widget-login.html' %} -{% endblock unfold_margin %} - -{% block unfold_main %} - - - -
-

Welcome to the OneLab portal !

-

New to OneLab? Please register or learn more about the project.

+{% extends "layout_base.html" %} +{% load portal_filters %} + +{% block content %} + +{% if username %} +{% widget "_widget-no_credentials.html" %} +
+ {%if 'no_creds' in user_cred %} +

NO CREDENTIALS are delegated to the portal!

+ {%endif%} + {%if 'creds_expired' in user_cred %} +

EXPIRED CREDENTIALS Please delegate again your credentials to the portal!

+ {%endif%} + +
+ {% if pi %} +
+

+ EXPERIMENT +

+
+ +
+
+ +
+
+

Your slices + + + +

+
+
+
Loading Slices
+
+
+
+

MANAGEMENT

+
+ +
+
+ +
+
+
+

+ SUPPORT +

+
+ +
+
+ +
+
+ +
+

+ ACCOUNT +

+
+ +
+
+ +
+
+ {% if person.last_name %} + {{person.first_name}} {{person.last_name}}
+ {% endif %} + Username: {{person.email}} +
+
+
+ {%else%} +
+
+

+ EXPERIMENT +

+
+ +
+
+ +
+
+

Your slices + + +

+
+
+
Loading Slices
+
+ {% if pending_slices %} +

Pending slices + +

    + {% for slices in pending_slices %} +
  • {{slices}}
  • + {% endfor %} +
+ +

+ {%endif%} +
+
+

+ SUPPORT +

+
+ +
+
+ +
+
+ +
+

+ ACCOUNT +

+
+ +
+
+ +
+
+ {% if person.last_name %} + {{person.first_name}} {{person.last_name}}
+ {% endif %} + Username: {{person.email}} +
+
+
+ {%endif%} +
-
-

-Experimentally-driven research is key to success in exploring the possible -futures of the Internet. The OneLab initiative provides an open, -general-purpose, shared experimental facility, both large-scale and -sustainable, which allows European industry and academia to innovate and assess -the performance of their solutions. Based on the results of several different -European and national projects, OneLab offers access to a range of tools and -testbeds including PlanetLab Europe, the NITOS wireless testbed, and other -federated testbeds. -

-

This UI server is connected to the manifold backend running at {{ MANIFOLD_URL }}.

+{% else %} +
+
+
+
+

+ Your Easy Access to Computer Networking Testbeds: +

+

+ A wide variety of world class testbeds available through your one account +

+
+
+
+ {% widget '_widget-login-user.html' %} +
+
+
+
+{% endif %} + + + -{% endblock unfold_main %} +{% endblock %}