summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main/birthdate.html
blob: b4e78e3b9b10a91be461823ae022975ae5a3f462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<% ntable("#cccccc", 2) %>
  <% include( '/elements/tr-input-date-field.html',
                'birthdate',
                $cust_main->birthdate,
                'Date of Birth',
                ( $conf->config('date_format') || "%m/%d/%Y" ),
                1
            )
  %>
</TABLE>
<%init>

my( $cust_main, %opt ) = @_;
my $conf = new FS::Conf;

</%init>