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