Account: oups, template fixed width
[unfold.git] / portal / templates / account-view.html
1 {% extends "layout_wide.html" %}
2 {% block content %}
3
4
5 {% if messages %}
6 <ul class="messages">
7     {% for message in messages %}
8     <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
9     {% endfor %}
10 </ul>
11 {% endif %}
12 <div class="container">
13         <div class="row">
14                 <div class="col-md-12">
15                         <ul class="nav nav-tabs nav-section">
16                                 <li class="active"><a href="#profile"><img src="{{ STATIC_URL }}icons/user-xs.png" alt="User Account" /> User Profile</a></li>
17                                 <li><a href="#account">Account</a></li>
18                                 <li><a href="#access">Testbed Access</a></li>
19                         </ul>
20             </div>
21         </div>
22 </div>
23 <div class="container tab-content">
24         <div class="tab-pane active row" id="profile">
25                 
26                 <div class="col-md-12">
27
28                         <form id="editForm" method="post" action="account_process" enctype="multipart/form-data">
29                                 {% csrf_token %}
30                                         <table class="profile">          
31                                         <tr>
32                                                 <td colspan="2">
33                                                                 <div><h3>Platform: Myslice</h3></div>
34                                                 </td>
35                                         </tr>
36                                         <tr>
37                                                 <td class="key">Email</td>
38                                                 <td class="value">
39                                                                 <span id="emailval" class="value" >{{ person.email }}</span>
40                                                                 <button class="btn btn-default btn-xs" type="button" id="edit_email" onclick="editAlert();"  title="To change your affiliation please contact the administrator">
41                                                                 <span class="glyphicon glyphicon-question-sign"></span> Edit
42                                                                 </button>
43                                                         </td>
44                                         </tr>
45                                         <tr class="odd">
46                                                         <td class="key">Password</td>
47                                                         <td class="value"> 
48                                                                 <button class="btn btn-default btn-xs" type="button" title="Password" name="edit_pass" id="edit_pass">
49                                                                         <span class="glyphicon glyphicon-edit"></span> Edit
50                                                                 </button>
51                                                                 <span id="passval"class="value">******** </span>
52                                                                 <span class="hide_this" id="span_pass">
53                                                                 <button type="button" class="btn btn-default btn-xs" title="Cancel" id="cancel_pass_change"> Cancel </button>
54                                                                 <div style='display:none;' id="pass_form">
55                                                                 <input type='hidden'  value='' /></div>
56                                                                 <table id="edit_password">
57                                                                         <tr>
58                                                                                         <td>Enter password: </td>
59                                                                                         <td class="field"> <input type="password" name="password" id="password" /> </td>
60                                                                                 </tr>
61                                                                                 <tr>
62                                                                                         <td>Confirm password: </td>
63                                                                                         <td class="field"> 
64                                                                                                 <input type="password" name="confirmpassword" id="confirmpassword" /> 
65                                                                                                 <input type="submit" class="btn btn-default btn-xs" name="submit_pass" value="Save"/> 
66                                                                                         </td>
67                                                                         </tr>
68                                                                 </table>
69                                                                 </span> 
70                                                         </td>
71                                         </tr>
72                                         <tr class="even">
73                                                         <td class="key">Full Name</td>
74                                                         <td class="value">
75                                                                 <span id="nameval" class="value" >{{ fullname }} </span>
76                                                                 <span class="hide_this" id="span_name">
77                                                                 <button type="button" class="btn btn-default btn-xs" title="Cancel" id="cancel_name_change"> Cancel </button> 
78                                                                 <div style='display:none;'><input type='hidden'  name='nameform'  /></div>
79                                                                 <input id="fname" type="text" name="fname" class="required"  maxlength="200" value="{{firstname}}" />
80                                                                 <input id="lname" type="text" name="lname" class="required"  maxlength="200" value="{{lastname}}" />
81                                                                 <input type="submit" class="btn btn-default btn-xs" name="submit_name" value="Save"/>
82                                                                 </span>
83                                                                 <button class="btn btn-default btn-xs" type="button"title="Full Name" id="edit_name">
84                                                                         <span class="glyphicon glyphicon-edit"></span> Edit
85                                                                 </button>
86                                                         </td>
87                                         </tr>
88                                         <tr class="odd">
89                                                         <td class="key">Authority</td>
90                                                         <td class="value">
91                                                                 <span id="affval" class="value">{{ authority }}</span>
92                                                                  <button class="btn btn-default btn-xs" type="button" id="edit_auth" onclick="editAlert()"  title="To change your authority please contact the administrator">
93                                                                 <span class="glyphicon glyphicon-question-sign"></span> Edit
94                                                                  </button>
95                                                         </td>
96                                                 </tr>
97                                                 {%if 'Enabled'  in user_status %}
98                                                 <tr class="even">
99                                                         <td class="key">Generate Keys</td>
100                                                         <td>
101                                                                 <input type="submit" name="generate" class="btn btn-danger btn-xs" value="Generate a new Key Pair" id="generate_keypair" 
102                                                                            onclick="return confirm('Are you sure? If you do so, your current credentials will be overwritten.');" 
103                                                                            title="It will generate a new key Pair and your current credentials will be overwritten."/>
104                                                 </td> 
105                                         </tr>
106                                         <tr class="odd">
107                                                 <td class="key">Public Key</td>
108                                                 <td class="value">
109                                                                 <span id="keyval" class="value">******** </span>
110                                                                 <span class="hide_this" id="span_upload">
111                                                                         <button type="button" class="btn btn-default btn-xs" title="Cancel" id="cancel_upload"> Cancel </button>
112                                                                         <div style='display:none;'>
113                                                                                 <input type='hidden'  name='upload'  /></div>
114                                                                                 <input type="file" name="pubkey" class="required" id="pubkey"/>  
115                                                                                 <input class="btn btn-default btn-xs" name="upload_key" id="upload_key"  type="submit" title="Upload your public key" value="Upload"
116                                                                                    onclick="return confirm('Are you sure? It will overwrite your current credentials and you have delegate it manually.');"/>
117                                                                 </span>
118                                                                 <div style='display:none;'> <input type='hidden'  name='dload'  /> </div> 
119                                                                 <button type="submit" name="dl_pubkey" class="btn btn-default btn-xs" title="Download your public key" id="dl_file">
120                                                                         <span class="glyphicon glyphicon-download"></span> Download
121                                                                 </button>
122                                                                 <button class="btn btn-default btn-xs" id="upload_file" type="button" title="Upload a public key">
123                                                                         <span class="glyphicon glyphicon-upload"></span> Upload
124                                                                 </button>       
125                                                 </td>
126                                         </tr>
127                                         <tr class="even" id="pkey_row">
128                                                  {%if 'N/A' not in user_private_key%}
129                                                 <td class="key">Private Key </td> <!-- Hide if priv_key doesn't exist in myslice platform   -->
130                                                 <td class="value">********<a href="#"></a>
131                                                         <button type="submit" name="dl_pkey" class="btn btn-default btn-xs" title="Download your privaye key" id="dl_pkey">
132                                                                         <span class="glyphicon glyphicon-download"></span> Download     
133                                                                 </button>
134                                                         <input class="btn btn-danger btn-xs" id="delete" name="delete" type="submit"  value="Delete" title="Delete your private key"
135                                                                                 onclick="return confirm('Are you sure? If you do so, you have to delegate your credentials manually.');"/> 
136                                                 </td>
137                                                   {%else%}
138                                                         <td class="key">Private Key </td> <!-- Hide if priv_key doesn't exist in myslice platform   -->
139                                                         <td class="value">********<a href="#"></a>
140                                                         <button type="submit" name="dl_pkey" class="btn btn-default btn-xs disabled" title="Download your privaye key" id="dl_pkey">
141                                                                 <span class="glyphicon glyphicon-download"></span> Download 
142                                                         </button>
143                                                         <input class="btn btn-danger btn-xs disabled" id="delete" name="delete" type="submit" title="Delete your private key" value="Delete" />
144                                                         </td>
145                                                  {%endif%}              
146                                                 </tr>
147                                                 <tr class="even">
148                                                 <td colspan="2">
149                                                         <p class="message" id="pkey_del_msg"><b> Tradeoff:</b> Ease-of-use vs Security.<br>
150                                                                         <b>Ease-of-use:</b> Automatic account delegation. Don't delete private key.<br>
151                                                                         <b>Security:</b> Manual account delegation. Download & Delete private key.
152                                                                 </p>
153                                                 </td>
154                                                 </tr>
155                                                 {%endif%}
156                                         </table>
157                         
158                 </div>
159         </div>
160
161         <div class="tab-pane row" id="account">
162                 <div class="col-md-12">
163         
164                 <h3>Principal Account <small>Account used for delegating credentials</small></h3>
165                 <table class="table"> 
166                         <tr class="odd"> 
167                         <th>Platform</th> 
168                         <th>Account Type</th>
169                                 <th>Account Delegation</th>
170                         <th>User hrn</th>
171                                 <th>User Status</th>
172                         <!--<th>Pub Key</th> -->
173                 </tr>   
174                         {% for row in principal_acc %}         
175                         <tr class="border_bottom">
176                         <td class="odd"> {{ row.platform_name }} </td>
177                         <td class="odd"> {{ row.account_type }} </td>
178                                 <td class="odd"> {{ row.delegation_type }} </td>
179                         <td class="odd"> {{ row.usr_hrn }}  </td>
180                                 <td class="odd"> {{ row.user_status }}  </td>
181                 <!--    <td class="even"> {{ row.usr_pubkey }} </td> -->
182                 </tr> 
183                         {%endfor%}               
184                 </table>
185         
186                 </div>
187         
188
189         {%if 'Enabled'  in user_status %}
190                 <div class="col-md-12">
191                 <h3>Credentials <small>Delegated to Principal Account</small></h3>
192                         <table class="table">
193                                         <caption><b>Delegated User Credential</b></caption> 
194                             <tr class="odd"> 
195                                 <th>Expiration Date</th>
196                                                 <th>Download</th>
197                             </tr>
198                                         {% for row in my_users %}         
199                                         <tr class="border_bottom">
200                                         <td class="odd"> {{ row.cred_exp }} </td>
201                                                 <td class="odd">
202                                                         <button class="btn btn-default btn-xs" name= "dl_user_cred" type="submit" title="Download User Credential">
203                                                                 <span class="glyphicon glyphicon-download"></span> Credential
204                                                         </button>
205                                                         <button class="btn btn-default btn-xs" name= "dl_user_cert" type="submit" title="Download User Certificate">
206                                                                 <span class="glyphicon glyphicon-download"></span> Crertificate
207                                                         </button>
208
209                                                 </td>
210                                         </tr>
211                                         {%endfor%}
212                                  </table>
213                                 <p></p>
214                                 <table class="mytable table table-bordered table-hover">
215                                         <caption><b>Delegated Slice Credentials</b></caption>  
216                                 <tr class="odd"> 
217                                                 <th>Slice Name</th> 
218                                         <th>Expiration Date</th>
219                                                 <th>Download</th>
220                                 </tr>
221                                         {% for row in my_slices %}     
222                                 <tr class="border_bottom">
223                                         <td class="odd"> {{ row.slice_name }} </td>
224                                                 <td class="odd"> {{ row.cred_exp }} </td>
225                                                 <td class="odd"> 
226                                                         <button class="btn btn-default btn-xs" name= "dl_{{row.slice_name}}" type="submit" title="Download Slice Credentials">
227                                                                 <span class="glyphicon glyphicon-download"></span> Download
228                                                         </button> 
229                                                 </td>
230                                 </tr>
231                                 {%endfor%}
232                                 </table>
233                                 <p></p>
234                                 <table class="mytable table table-bordered table-hover">
235                                         <caption><b>Delegated Authority Credentials</b></caption>
236                                         <tr class="odd"> 
237                                         <th>Authority Name</th> 
238                                         <th>Expiration Date</th>
239                                                 <th>Download</th>
240                                         </tr>
241                                         {% for row in my_auths %}
242                                         <tr class="border_bottom">
243                                         <td class="odd"> {{ row.auth_name }} </td>
244                                         <td class="odd"> {{ row.cred_exp }} </td>
245                                                 <td class="odd">
246                                                         <button class="btn btn-default btn-xs" name= "dl_{{row.auth_name}}" type="submit" title="Download Authority Credentials">
247                                                                 <span class="glyphicon glyphicon-download"></span> Download
248                                                         </button>
249                                                 </td>
250                                         </tr>
251                                         {%endfor%}
252                                 </table>
253                                 <p></p>
254                                  {%if '' not in my_users%}      
255                                 <p><button class="btn btn-danger btn-lg btn-block"   name= "clear_cred" type="submit" title="Clear All Credentials">Clear Credentials</button></p>
256                                 {%else%}
257                                 <p><button class="btn btn-danger btn-lg btn-block disabled"   name= "clear_cred" type="submit" title="Clear All Credentials">Clear Credentials</button></p>
258                                 {%endif%}
259                 </div>
260         </div>
261
262         <div class="tab-pane row" id="access">
263                 <div class="col-md-12">
264         
265                 <h3>Testbed Access <small>Reference Accounts in the following testbeds</small></h3>
266         <table class="mytable table table-bordered table-hover"> 
267             <tr class="odd"> 
268                 <th>Platform</th> 
269                 <th>Account Type</th>
270                                 <th>Reference to</th>
271                                 <th>Remove Account</th>
272             </tr>   
273             {% for row in ref_acc %}         
274             <tr class="border_bottom">
275                 <td class="odd"> {{ row.platform_name }} </td>
276                 <td class="odd"> {{ row.account_type }} </td>
277                                 <td class="odd"> {{ row.account_reference }} </td>
278                                 <td class="odd">
279                                 <button class="btn btn-danger btn-xs" name="delete_{{row.platform_name}}" type="submit" title="Delete account from this platform">
280                                                 <span class="glyphicon glyphicon-minus"></span>
281                                         </button>
282                                 </td>
283             </tr> 
284             {%endfor%}               
285         </table>                
286                 
287                 
288                 <h3>Add reference account to the following testbeds</h3>
289         <table class="mytable table table-bordered table-hover"> 
290             <tr class="odd"> 
291                 <th>Platforms</th> 
292                 <th>Add Account</th>
293             </tr>   
294             {% for platform in platform_list %}         
295             <tr class="border_bottom">
296                 <td class="odd"> {{ platform.platform_no_access }} </td>
297                 <td class="odd">
298                                         <button class="btn btn-success btn-sm" name= "add_{{platform.platform_no_access}}" type="submit" title="Add account to this platform">
299                                                 <span class="glyphicon glyphicon-plus"></span>
300                                         </button>
301                                 </td>
302             </tr> 
303             {%endfor%}               
304         </table>
305         </div>
306 {%endif%} 
307 </div>
308 </form>
309 </div>
310
311 <script>
312     $(document).ready(function() {
313         $('.nav-tabs a').click(function (e) {
314                         e.preventDefault();
315                         $(this).tab('show');
316                         id = $(this).attr('href').substr(1);
317                 
318                 });
319                 
320         $('button#createslice').click(function() {
321             window.location="/portal/slice_request/";
322         });
323     });
324 </script>
325
326 {% endblock %}