aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/regate.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/regate.tpl')
-rw-r--r--view/tpl/regate.tpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/view/tpl/regate.tpl b/view/tpl/regate.tpl
index bae0884dc..04a9df1de 100644
--- a/view/tpl/regate.tpl
+++ b/view/tpl/regate.tpl
@@ -20,3 +20,10 @@
</form>
<div class="clear"></div>
+<script>
+ var week_days = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'];
+ $('.register_date').each( function () {
+ var date = new Date($(this).data('utc'));
+ $(this).html(date.toLocaleString(undefined, {weekday: 'short', hour: 'numeric', minute: 'numeric'}));
+ });
+</script>