changd date format on orders view
This commit is contained in:
		
					parent
					
						
							
								f1f6074c78
							
						
					
				
			
			
				commit
				
					
						339e20d0b7
					
				
			
		
					 3 changed files with 15 additions and 4 deletions
				
			
		| 
						 | 
					@ -35,7 +35,7 @@
 | 
				
			||||||
                <div class="col-xs-6 text-right">
 | 
					                <div class="col-xs-6 text-right">
 | 
				
			||||||
                    <address>
 | 
					                    <address>
 | 
				
			||||||
                        <strong>{% trans "Billed To:"%}</strong><br>
 | 
					                        <strong>{% trans "Billed To:"%}</strong><br>
 | 
				
			||||||
                        {{order.created_at}}<br><br>
 | 
					                        <span id="order-created_at">{{order.created_at}}</span><br><br>
 | 
				
			||||||
                        <strong>{% trans "Status:"%}</strong><br>
 | 
					                        <strong>{% trans "Status:"%}</strong><br>
 | 
				
			||||||
                        <strong class="{% if order.status == 'Approved' %}text-success
 | 
					                        <strong class="{% if order.status == 'Approved' %}text-success
 | 
				
			||||||
                                       {%else%} text-danger
 | 
					                                       {%else%} text-danger
 | 
				
			||||||
| 
						 | 
					@ -81,4 +81,17 @@
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    {% endif %}
 | 
					    {% endif %}
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					<script type="text/javascript"> 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    window.onload = function () {
 | 
				
			||||||
 | 
					            var locale_date = new Date(document.getElementById("order-created_at").textContent + ' UTC');
 | 
				
			||||||
 | 
					            locale_date =  moment(locale_date).format("YYYY-MM-DD h:mm:ss a");
 | 
				
			||||||
 | 
					            document.getElementById('order-created_at').innerHTML = locale_date;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
{%endblock%}
 | 
					{%endblock%}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,7 +24,7 @@
 | 
				
			||||||
                        {% for order in orders %}
 | 
					                        {% for order in orders %}
 | 
				
			||||||
                            <tr>
 | 
					                            <tr>
 | 
				
			||||||
                                <td scope="row">{{ order.id }}</td>
 | 
					                                <td scope="row">{{ order.id }}</td>
 | 
				
			||||||
                                <td>{{ order.created_at }}</td>
 | 
					                                <td>{{ order.created_at | date:"M d, Y" }}</td>
 | 
				
			||||||
                                <td>{{ order.price }} CHF</td>
 | 
					                                <td>{{ order.price }} CHF</td>
 | 
				
			||||||
                                <td>{% if order.approved %}
 | 
					                                <td>{% if order.approved %}
 | 
				
			||||||
                                    <span class="text-success strong">{% trans "Approved"%}</span>
 | 
					                                    <span class="text-success strong">{% trans "Approved"%}</span>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -95,11 +95,9 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
<script type="text/javascript"> 
 | 
					<script type="text/javascript"> 
 | 
				
			||||||
    console.log("sadas");
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    window.onload = function () {
 | 
					    window.onload = function () {
 | 
				
			||||||
        {% for user_key in keys %}
 | 
					        {% for user_key in keys %}
 | 
				
			||||||
            console.log("{{user_key.id}}");
 | 
					 | 
				
			||||||
            var locale_date = new Date(document.getElementById("ssh-created_at-{{user_key.id}}").textContent + ' UTC');
 | 
					            var locale_date = new Date(document.getElementById("ssh-created_at-{{user_key.id}}").textContent + ' UTC');
 | 
				
			||||||
            locale_date =  moment(locale_date).format("YYYY-MM-DD h:mm:ss a");
 | 
					            locale_date =  moment(locale_date).format("YYYY-MM-DD h:mm:ss a");
 | 
				
			||||||
            console.log(locale_date);
 | 
					            console.log(locale_date);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue