summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-fixed-date.html
blob: 716e5ceb82a7f63c3649c6acc4cdc60837ffbcd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% include('tr-fixed.html', %opt ) %>
<%init>

my %opt = @_;

my $value = $opt{'curr_value'} || $opt{'value'};

my $conf = new FS::Conf;
my $date_format = $conf->config('date_format') || '%m/%d/%Y';

$opt{'formatted_value'} = time2str($date_format, $value);

</%init>