Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into onelab
[unfold.git] / portal / templates / institution.html
1 {% extends "layout.html" %}
2 {% block head %} 
3 <script type="text/javascript" src="{{STATIC_URL}}/js/institution.js"></script>
4 {% endblock head %}
5 {% block content %}
6 <div class="row">
7         <h1><img src="{{ STATIC_URL }}img/icon_authority_color_small.png" alt="" /> Institution: {{user_details.parent_authority}}</h1>
8 </div>
9 <div class="row" id="institution">
10     <ul class="nav nav-tabs">
11       <li class="active" id="authority-tab"><a class="home-tab" data-panel="institution" href="#">INFO</a></li>
12       <li id="users-tab"><a class="home-tab" data-panel="users" href="#">USERS</a></li>
13       <li id="slices-tab"><a class="home-tab" data-panel="slices" href="#">SLICES</a></li>
14     </ul>
15     <div class="home-panel" id="institution">
16         <div id="authority-tab-loading"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading Authority" /></div>
17         <div id="authority-tab-loaded" style="display:none;">
18             <div id="authority-data" style="float:left; width:50%;"></div>
19             <div id="onelab_membership" style="float:right; width:50%;">
20                 <img src="{{ STATIC_URL }}img/onelab-logo.png" alt="" /><br>
21                 <div id="onelab-data"></div>
22             </div>
23         </div>
24     </div>
25     <div class="home-panel" id="users" style="display:none;">
26         <div id="user-tab-loading"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading Slices" /></div>
27         <div id="user-tab-loaded" style="display:none;">
28             <table id="user-tab">
29                 <tr>
30                     <th>+/-</th>
31                     <th>Email</th>
32                     <th>user_hrn</th>
33                     <th>First name</th>
34                     <th>Last name</th>
35                     <th>Enabled</th>
36                 </tr>
37             </table>
38             <br>
39             <button id="deleteusers" type="button" class="btn btn-default"><span class="glyphicon glyphicon-remove"></span> Delete Users</button>
40         </div>
41         </div>
42     <div class="home-panel" id="slices" style="display:none;">
43         <button id="createslice" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> create slice</button>
44         <div id="slice-tab-loading"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading Slices" /></div>
45         <div id="slice-tab-loaded" style="display:none;">
46             <table id="slice-tab">
47                 <tr>
48                     <th>+/-</th>
49                     <th>slice_hrn</th>
50                     <th>users</th>
51                     <th>url</th>
52                     <th>nodes</th>
53                     <th>expiration</th>
54                 </tr>
55             </table>
56             <br>
57             <div>
58                 <button id="renewslices" type="button" class="btn btn-default"><span class="glyphicon glyphicon-refresh"></span> Renew Slices</button>
59                 <button id="deleteslices" type="button" class="btn btn-default"><span class="glyphicon glyphicon-remove"></span> Delete Slices</button>
60             </div>
61         </div>
62     </div>
63 </div>
64 <script>
65     $(document).ready(function() {
66         {% if person %}
67         {% if user_details.parent_authority %}
68         $.post("/rest/authority/",{'filters':{'authority_hrn':'{{user_details.parent_authority}}'}}, function( data ) {
69             var authority_data = [];
70             var onelab_data = [];
71                         /* 'city','enabled','legal','longitude','onelab_membership','address','parent_authority','slice','user','country',
72             'tech','abbreviated_name','url','postcode','description','scientific','authority_hrn','latitude','name'     */
73             $.each( data, function( key, val ) {
74                 authority_row = "<img src='{{ STATIC_URL }}img/institutions/{{user_details.parent_authority}}.gif' alt='' /><br>";
75                 authority_row += "<br>";
76                 authority_row += "<b>authority:</b> "+val.authority_hrn+"<br>";
77                 authority_row += "<br>";
78                 authority_row += "<b>"+val.name+"</b><br>";
79                 authority_row += "<br>";
80                 authority_row += "<b>Address:</b> "+val.address+"<br>";
81                 authority_row += "<b>City:</b> "+val.postcode+" "+val.city+"<br>";
82                 authority_row += "<br>";
83                 authority_row += "<b>Country:</b> "+val.country+"<br>";
84                 authority_row += "<br>";
85                 authority_row += "<br>";
86                 authority_row += "<h2>Contacts</h2>";
87                 authority_row += "<b>Legal:</b> ";
88                 /*
89
90                 TODO: find a way to express JSON correctly given the constrains: CSV / JSON
91
92                 legal = jQuery.parseJSON(val.legal);
93                 if($.isArray(legal)){
94                     $.each(legal, function(k,v){
95                         authority_row += k+" "+v+"<br>";
96                     });
97                 }else{
98                 */
99                     authority_row += val.legal+"<br>";
100                 //}
101                 authority_row += "<br>";
102                 authority_row += "<b>Scientific:</b> ";
103                 /*
104                 scientific = jQuery.parseJSON(val.scientific);
105                 if($.isArray(scientific)){
106                     $.each(scientific, function(v){
107                         authority_row += v+", ";
108                     });
109                 }else{
110                 */
111                     authority_row += val.scientific+"<br>";
112                 //}
113                 onelab_membership = "<b>Status: </b>"+val.onelab_membership;
114                 onelab_data.push(onelab_membership);
115                 authority_data.push(authority_row);
116             });
117             $("div#authority-data").html(authority_data.join( "" ));
118             $("div#onelab-data").html(onelab_data.join( "" ));
119             $("div#authority-tab-loaded").css("display","block");
120             $("div#authority-tab-loading").css("display","none");
121          });
122
123         $.post("/rest/slice/",{'filters':{'parent_authority':'{{user_details.parent_authority}}'}}, function( data ) {
124             var list_slices = [];
125             var table_slices = [];
126             /* "slice_hrn", "slice_description", "slice_type", "parent_authority", "created", "nodes", "slice_url", "slice_last_updated", "user", "slice_urn", "slice_expires" */
127             $.each( data, function( key, val ) {
128                 list_slices.push( "<li><a href=\"portal/slice/"+val.slice_hrn+"\">" + val.slice_hrn + "</a></li>" );
129                 if(val.nodes=="undefined" || val.nodes==null){
130                     nodes_length=0;
131                 }else{
132                     nodes_length=val.nodes.length;
133                 }
134
135                 if(val.user=="undefined" || val.user==null){
136                     user_length=0;
137                 }else{
138                     user_length=val.user.length;
139                 }
140
141                 if(val.slice_url=="undefined" || val.slice_url==null){
142                     slice_url="";
143                 }else{
144                     slice_url="<a href='"+val.slice_url+"' target='_blank'>"+val.slice_url+"</a>";
145                 }
146                 
147                 slice_row = "<tr id='"+val.slice_hrn+"'>";
148                 slice_row += "<td><input type='checkbox' class='slice' id='"+val.slice_hrn+"'></td>";
149                 slice_row += "<td><a href=\"/slice/"+val.slice_hrn+"\">" + val.slice_hrn + "</a></td>";
150                 slice_row += "<td>"+user_length+"</td>";
151                 slice_row += "<td>"+slice_url+"</td>";
152                 slice_row += "<td>"+nodes_length+"</td>";
153                 slice_row += "<td>"+val.slice_expires+"</td>";
154                 slice_row += "</tr>";
155                 table_slices.push(slice_row);
156                 
157             });
158            
159             /* $("div#slice-list").html($( "<ul/>", { html: list_slices.join( "" ) })); */
160             $("table#slice-tab tr:last").after(table_slices.join( "" ));
161             $("div#slice-tab-loaded").css("display","block");
162             $("div#slice-tab-loading").css("display","none");
163         });
164
165         $.post("/rest/user/",{'filters':{'parent_authority':'{{user_details.parent_authority}}'}}, function( data ) {
166             var list_users = [];
167             var table_users = [];
168                         /*
169                         "enabled", "keys", "parent_authority", "user_first_name", "user_last_name", "user_phone", "user_hrn", "slice", "user_email"
170                         */
171             $.each( data, function( key, val ) {
172                 list_users.push( "<li><a href=\"portal/user/"+val.user_email+"\">" + val.user_email + "</a></li>" );
173
174                 user_row = "<tr id='"+val.user_hrn+"'>";
175                 user_row += "<td><input type='checkbox' class='user' id='"+val.user_hrn+"'></td>";
176                 user_row += "<td>"+val.user_email+"</td>";
177                 user_row += "<td>"+val.user_hrn+"</td>";
178                 user_row += "<td>"+val.user_first_name+"</td>";
179                 user_row += "<td>"+val.user_last_name+"</td>";
180                                 user_row += "<td>"+val.enabled+"</td>";
181                 user_row += "</tr>";
182                 table_users.push(user_row);
183                 
184             });
185             $("table#user-tab tr:last").after(table_users.join( "" ));
186             $("div#user-tab-loaded").css("display","block");
187             $("div#user-tab-loading").css("display","none");
188          });
189          {% endif %}
190          {% endif %}
191     });
192 </script>
193 {% endblock %}