wip user info and slices list
authorLoic Baron <loic.baron@lip6.fr>
Wed, 2 Apr 2014 10:40:39 +0000 (12:40 +0200)
committerLoic Baron <loic.baron@lip6.fr>
Wed, 2 Apr 2014 10:40:39 +0000 (12:40 +0200)
portal/templates/base.html

index 29d1b3f..1c5a2d4 100644 (file)
@@ -1,7 +1,7 @@
 {% load portal_filters %}
 {# This is required by insert_above #}{% insert_handler %}<!DOCTYPE html>
 <html lang="en"><head>
-<title>OneLab - {{ section }}</title>
+<title>{{theme}} portal - {{ section }}</title>
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <link rel="shortcut icon" href="/static/img/myslice-icon.png">
 {# This is where insert_str will end up #}{% media_container prelude %}
 {% insert_str prelude "css/topmenu.css" %}
 {% insert_str prelude "js/logout.js" %}
 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/{{ theme }}.css">
+
+<script type="text/javascript">
+/*
+XXX TODO: session
+This list of slices should go into SESSION !
+*/
+$(document).ready(function() {
+
+    user = myslice.user();
+    if(user.length>0){
+       $.each( user.slices, function(i, val) {
+               items.push( "<li><a href=\"/slice/"+val+"\">" + val + "</a></li>" );
+       });
+       $("div#home-slice-list").html($( "<ul/>", { html: items.join( "" ) }));
+       $("ul#dropdown-slice-list").append(items.join( "" ));
+    }
+       {% if person %}
+    $.post("/rest/user/",{'filters':{'user_hrn':'$user_hrn'}}, function( data ) {
+         var items = [];
+      if(data.length > 0){
+                 $.each( data[0].slices, function(i, val) {
+                       items.push( "<li><a href=\"/slice/"+val+"\">" + val + "</a></li>" );
+                 });
+                 
+                 $("div#home-slice-list").html($( "<ul/>", { html: items.join( "" ) }));
+                 $("ul#dropdown-slice-list").append(items.join( "" ));
+         }else{
+                 $("div#home-slice-list").html("no slice");
+      } 
+       });
+       {% endif %}
+});
+</script>
 </head>
 <body>
 {% block container %}