aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/plain.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/plain.tpl')
-rw-r--r--view/tpl/plain.tpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/view/tpl/plain.tpl b/view/tpl/plain.tpl
index 9af76718e..b01ee9baa 100644
--- a/view/tpl/plain.tpl
+++ b/view/tpl/plain.tpl
@@ -1,3 +1,10 @@
<h2>{{$title}}</h2>
{{if $now}}<div>{{$now}}</div>{{/if}}
<div style="font-weight: normal; font-family: monospace;">{{$infos}}</div>
+<script>
+ $('.register_date').each( function () {
+ var UTC = $(this).html();
+ var date = new Date(UTC);
+ $(this).html(date.toLocaleString());
+ });
+</script>