change representation data times
This commit is contained in:
parent
1d48515008
commit
9e41555a2f
|
@ -431,7 +431,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">File</th>
|
<th scope="col">File</th>
|
||||||
<th scope="col" data-type="date" data-format="DD-MM-YYYY">Uploaded on</th>
|
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Uploaded on</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -445,7 +445,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ doc.created.strftime('%H:%M %d-%m-%Y')}}
|
{{ doc.created.strftime('%Y-%m-%d %H:%M')}}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -459,7 +459,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ doc.created.strftime('%H:%M %d-%m-%Y')}}
|
{{ doc.created.strftime('%Y-%m-%d %H:%M')}}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<th scope="col">Type Upload</th>
|
<th scope="col">Type Upload</th>
|
||||||
<th scope="col">DHID</th>
|
<th scope="col">DHID</th>
|
||||||
<th scope="col">Status</th>
|
<th scope="col">Status</th>
|
||||||
<th scope="col" data-type="date" data-format="DD-MM-YYYY">Time</th>
|
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Time</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
<td>
|
<td>
|
||||||
{{ log.get_status() }}
|
{{ log.get_status() }}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ log.created.strftime('%H:%M %d-%m-%Y') }}</td>
|
<td>{{ log.created.strftime('%Y-%m-%d %H:%M') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
<th scope="col">Type Upload</th>
|
<th scope="col">Type Upload</th>
|
||||||
<th scope="col">Type Device</th>
|
<th scope="col">Type Device</th>
|
||||||
<th scope="col">Original DHID</th>
|
<th scope="col">Original DHID</th>
|
||||||
<th scope="col" data-type="date" data-format="DD-MM-YYYY">Time</th>
|
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Time</th>
|
||||||
<th scope="col"></th>
|
<th scope="col"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
<td>
|
<td>
|
||||||
{{ snap.original_dhid }}
|
{{ snap.original_dhid }}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ snap.created.strftime('%H:%M %d-%m-%Y') }}</td>
|
<td>{{ snap.created.strftime('%Y-%m-%d %H:%M') }}</td>
|
||||||
<td>
|
<td>
|
||||||
{% if snap.snapshot_uuid %}
|
{% if snap.snapshot_uuid %}
|
||||||
<a href="{{ url_for('inventory.export', export_id='snapshot') }}?id={{ snap.snapshot_uuid }}" target="_blank">
|
<a href="{{ url_for('inventory.export', export_id='snapshot') }}?id={{ snap.snapshot_uuid }}" target="_blank">
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
<th scope="col">Type</th>
|
<th scope="col">Type</th>
|
||||||
<th scope="col">Provider</th>
|
<th scope="col">Provider</th>
|
||||||
<th scope="col">Device</th>
|
<th scope="col">Device</th>
|
||||||
<th scope="col">Created</th>
|
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Created</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ tag.created.strftime('%H:%M %d-%m-%Y') }}</td>
|
<td>{{ tag.created.strftime('%Y-%m-%d %H:%M') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Reference in New Issue