summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main/birthdate.html
blob: 415aba3c4c394129870af7e6382a562ab68212ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% 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>