aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/plain.tpl
blob: b01ee9baaa4d95969a5ce6c4d87b21ee4e8d8bed (plain) (blame)
1
2
3
4
5
6
7
8
9
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>