summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/custom_content/birthdate.html
blob: 1f16963af2e58de2cb6fe09b38cfda5c44434900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<TABLE CLASS="fsinnerbox">
  <& /elements/tr-td-label.html, 'label' => mt('Date of Birth') &>
  <TD BGCOLOR="#ffffff"><% $dt ? $dt->strftime($date_format) : '' %></TD>
</TR>
</TABLE>
<%init>
my($cust_main) = @_;
my $conf = new FS::Conf;
my $date_format = ($conf->config('date_format') || "%m/%d/%Y");
my $dt = $cust_main->birthdate ne ''
           ? DateTime->from_epoch( 'epoch'     => $cust_main->birthdate,
                                   'time_zone' =>'floating',
                                 )
           : '';
</%init>