changed UTC to localtime in ssh key view
This commit is contained in:
		
					parent
					
						
							
								642acfde75
							
						
					
				
			
			
				commit
				
					
						9b6bb4eb26
					
				
			
		
					 2 changed files with 18 additions and 1 deletions
				
			
		|  | @ -164,6 +164,12 @@ | ||||||
|     <!-- Gen SSH Key lib --> |     <!-- Gen SSH Key lib --> | ||||||
|     <script type="text/javascript" src="{% static 'hosting/js/gen-ssh-key.js' %}"></script> |     <script type="text/javascript" src="{% static 'hosting/js/gen-ssh-key.js' %}"></script> | ||||||
| 
 | 
 | ||||||
|  |     <!-- Moment --> | ||||||
|  |     <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script> | ||||||
|  |     <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.js"></script> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| </body> | </body> | ||||||
| 
 | 
 | ||||||
| </html> | </html> | ||||||
|  |  | ||||||
|  | @ -1,5 +1,6 @@ | ||||||
| {% extends "hosting/base_short.html" %} | {% extends "hosting/base_short.html" %} | ||||||
| {% load staticfiles bootstrap3 i18n %} | {% load staticfiles bootstrap3 i18n %} | ||||||
|  | {% load tz %} | ||||||
| {% block content %}  | {% block content %}  | ||||||
| <div> | <div> | ||||||
| 	<div class="container virtual-machine-container dashboard-container "> | 	<div class="container virtual-machine-container dashboard-container "> | ||||||
|  | @ -32,7 +33,8 @@ | ||||||
|                             {% for user_key in keys %} |                             {% for user_key in keys %} | ||||||
|                             <tr>  |                             <tr>  | ||||||
|                                 <td scope="row">{{user_key.name}}</td>  |                                 <td scope="row">{{user_key.name}}</td>  | ||||||
|                                 <td>{{user_key.created_at}}</td>  | 
 | ||||||
|  |                                 <td><span id="created_at">{{user_key.created_at|date:'Y-m-d H:i' }}</span></td>  | ||||||
|                                 <td> |                                 <td> | ||||||
|                                     <span class="h3 label label-success"><strong>Active</strong></span> |                                     <span class="h3 label label-success"><strong>Active</strong></span> | ||||||
|                                 </td>  |                                 </td>  | ||||||
|  | @ -92,5 +94,14 @@ | ||||||
|     </script> |     </script> | ||||||
| {% endif %} | {% endif %} | ||||||
| 
 | 
 | ||||||
|  | <script type="text/javascript">  | ||||||
|  |     window.onload = function () { | ||||||
|  |         var locale_date = new Date(document.getElementById('created_at').textContent + ' UTC'); | ||||||
|  |         locale_date =  moment(locale_date).format("YYYY-MM-DD h:mm:ss a"); | ||||||
|  |         document.getElementById('created_at').innerHTML = locale_date; | ||||||
|  |     }; | ||||||
|  | 
 | ||||||
|  | </script> | ||||||
|  | 
 | ||||||
| {%endblock%} | {%endblock%} | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue