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