50cbd8c9fd17b1e5d854639dc34ba9453402fc9a
[myslice.git] / portal / templates / fibre / fibre_institution.html
1 {% extends "layout_wide.html" %}
2
3 {% block head %} 
4 <script type="text/javascript" src="{{STATIC_URL}}/js/institution.js"></script>
5 {% endblock head %}
6
7 {% block content %}
8 <div class="container">
9         <div class="row">
10                 <div class="col-md-12">
11                          <div class="breadcrumbs">
12                                  Management &nbsp;>&nbsp; Institution: <span id="authority_name"></span>
13                          </div>
14                 </div>
15         </div>
16 </div>
17 <div class="container">
18         <div class="row">
19                 <div class="col-md-12">
20                         <ul class="nav nav-tabs nav-section">
21                                 <!-- <li class="active"><a href="#about">About</a></li>-->
22                                 <li class="active"><a href="#users">Users</a></li>
23                                 <li><a href="#slices">Slices</a></li>
24                                 <li><a href="#requests">Requests</a></li>
25                         </ul>
26             </div>
27         </div>
28 </div>
29 <div class="container tab-content">
30 <!--
31         <div class="tab-pane active row" id="about">
32         </div>
33 -->
34         <div class="tab-pane row" id="users" data-authority="{{user_details.parent_authority}}">
35                 <div class="col-md-12 el">
36                         <div id="user-tab-loading"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading Slices" /></div>
37                                 <div id="user-tab-loaded" style="display:none;">
38                                 <table id="user-tab" class="table">
39                                         <tr>
40                                         <th>+/-</th>
41                                         <th>Email</th>
42                                         <th>User hrn</th>
43                                         <th>First name</th>
44                                         <th>Last name</th>
45                                         <th>Enabled</th>
46                                         </tr>
47                                 </table>
48                                 
49                         </div>
50                         {%if 'is_pi'  in pi %}  
51                         <div>
52                                 <button id="deleteusers" type="button" class="btn btn-danger"><span class="glyphicon glyphicon-remove"></span> Delete selected users</button>
53                         </div>
54                         <p></p>
55                         <p></p>
56                         <div> <button type="button" class="btn btn-onelab" onclick="window.location.href='/'">Home</button> </div>
57                         {% endif %}
58                 </div>
59         </div>
60
61         <div class="tab-pane row" id="slices">
62                 <div class="col-md-12 el">
63             <div id="slice-tab-loading"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading Slices" /></div>
64             <div id="slice-tab-loaded" style="display:none;">
65                 <table id="slice-tab" class="table">
66                     <tr>
67                         <th>+/-</th>
68                         <th>Slice hrn</th>
69                         <th>Users</th>
70                         <th>Url</th>
71                         <!-- <th>nodes</th> -->
72                         <th>Expiration</th>
73                     </tr>
74                 </table>                        
75             </div>
76         {% if 'is_pi'  in pi %}
77         <div>
78                 {% if 'is_pi'  in pi %}
79                         <button id="createslice" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> Create slice</button>
80                         {% else %}
81                         <button id="createslice" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> Request slice</button>
82                         {% endif %}
83             <button id="renewslices" type="button" class="btn btn-primary"><span class="glyphicon glyphicon-refresh"></span> Renew Slices</button>
84             <button id="deleteslices" type="button" class="btn btn-danger"><span class="glyphicon glyphicon-remove"></span> Delete Slices</button>
85             <p></p>
86             <p></p>
87             <div><button type="button" class="btn btn-onelab" onclick="window.location.href='/'">Home</button></div>
88         </div>
89                 {% endif %} 
90            </div>
91         </div>
92         <div class="tab-pane row" id="requests">
93         </div>
94 </div>
95 <script>
96 $(document).ready(function() {
97     {% if person %}
98     {% if user_details.parent_authority %}
99
100         $.post("/rest/slice/",{'filters':{'parent_authority':'{{user_details.parent_authority}}'}}, function( data ) {
101             var list_slices = [];
102             var table_slices = [];
103             /* "slice_hrn", "slice_description", "slice_type", "parent_authority", "created", "nodes", "slice_url", "slice_last_updated", "users", "slice_urn", "slice_expires" */
104             $.each( data, function( key, val ) {
105                 list_slices.push( "<li><a href=\"portal/slice/"+val.slice_hrn+"\">" + val.slice_hrn + "</a></li>" );
106                 if(val.nodes=="undefined" || val.nodes==null){
107                     nodes_length=0;
108                 }else{
109                     nodes_length=val.nodes.length;
110                 }
111                 console.log(val);
112                 if(val.users=="undefined" || val.users==null){
113                     users_length=0;
114                 }else{
115                     users_length=val.users.length;
116                 }
117
118                 if(val.slice_url=="undefined" || val.slice_url==null){
119                     slice_url="";
120                 }else{
121                     slice_url="<a href='"+val.slice_url+"' target='_blank'>"+val.slice_url+"</a>";
122                 }
123                 
124                 slice_row = "<tr id='"+val.slice_hrn+"'>";
125                 slice_row += "<td><input type='checkbox' class='slice' id='"+val.slice_hrn+"'></td>";
126                 slice_row += "<td><a href=\"/slice/"+val.slice_hrn+"\">" + val.slice_hrn + "</a></td>";
127                 slice_row += "<td>"+users_length+"</td>";
128                 slice_row += "<td>"+slice_url+"</td>";
129                 //slice_row += "<td>"+nodes_length+"</td>";
130                 slice_row += "<td>"+val.slice_expires+"</td>";
131                 slice_row += "</tr>";
132                 table_slices.push(slice_row);
133                 
134             });
135            
136             /* $("div#slice-list").html($( "<ul/>", { html: list_slices.join( "" ) })); */
137             $("table#slice-tab tr:last").after(table_slices.join( "" ));
138             $("div#slice-tab-loaded").css("display","block");
139             $("div#slice-tab-loading").css("display","none");
140         });
141                 
142                 
143         $.post("/rest/user/",{'filters':{'parent_authority':'{{user_details.parent_authority}}'}}, function( data ) {
144             var list_users = [];
145             var table_users = [];
146                     /* Available fields
147                     user_gid, user_enabled, slices, pi_authorities, keys, parent_authority, user_first_name,
148                     user_urn, user_last_name, user_phone, user_hrn, user_email, user_type
149                     */
150             $.each( data, function( key, val ) {
151                 list_users.push( "<li><a href=\"portal/user/"+val.user_email+"\">" + val.user_email + "</a></li>" );
152                 user_row = "<tr id='"+val.user_hrn+"'>";
153                 user_row += "<td><input type='checkbox' class='user' id='"+val.user_hrn+"'></td>";
154                 user_row += "<td>"+val.user_email+"</td>";
155                 user_row += "<td>"+val.user_hrn+"</td>";
156                 user_row += "<td>"+val.user_first_name+"</td>";
157                 user_row += "<td>"+val.user_last_name+"</td>";
158                             user_row += "<td>"+val.user_enabled+"</td>";
159                 user_row += "</tr>";
160                 table_users.push(user_row);
161             });
162             $("table#user-tab tr:last").after(table_users.join( "" ));
163             $("div#user-tab-loaded").css("display","block");
164             $("div#user-tab-loading").css("display","none");
165         });
166
167     {% endif %}
168     {% endif %}
169
170 }); // End document.ready
171
172 $(document).ready(function() {
173         $('.nav-tabs a').click(function (e) {
174                 e.preventDefault();
175                 $(this).tab('show');
176         var id = $(this).attr('href').substr(1);
177         if ((id == 'requests') || (id == 'about'))
178                 $("#" + id).load('/management/' + id);
179         });
180         var hash = window.location.hash;
181         if (hash) {
182                 $('.nav-tabs a[href='+hash+']').click();
183         } else {
184                 $('.nav-tabs a[href=#about]').click();
185         }
186 });
187 </script>
188 {% endblock %}