From 9db8b697e257cef1e8ffaef832cd650873eb971e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Fri, 7 May 2021 11:01:59 +0200 Subject: [PATCH] Zeiterfassung: Placeholder-String im Template ermitteln --- SL/Controller/TimeRecording.pm | 3 +-- templates/webpages/time_recording/form.html | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/SL/Controller/TimeRecording.pm b/SL/Controller/TimeRecording.pm index d1120ce72..d326522be 100644 --- a/SL/Controller/TimeRecording.pm +++ b/SL/Controller/TimeRecording.pm @@ -17,7 +17,7 @@ use SL::DB::Project; use SL::DB::TimeRecording; use SL::DB::TimeRecordingArticle; use SL::Helper::Flash qw(flash); -use SL::Helper::Number qw(_round_number _parse_number _format_total); +use SL::Helper::Number qw(_round_number _parse_number); use SL::Helper::UserPreferences::TimeRecording; use SL::Locale::String qw(t8); use SL::ReportGenerator; @@ -90,7 +90,6 @@ sub action_edit { $self->render('time_recording/form', title => t8('Time Recording'), - ZERO => _format_total(0.00), ); } diff --git a/templates/webpages/time_recording/form.html b/templates/webpages/time_recording/form.html index 773512c5e..a75ec9515 100644 --- a/templates/webpages/time_recording/form.html +++ b/templates/webpages/time_recording/form.html @@ -24,9 +24,9 @@ [% 'Duration' | $T8 %] [% P.input_tag('duration_h', SELF.time_recording.duration_as_hours || '', size=4, class='numeric', - "data-validate"="number", "data-title"=LxERP.t8('h'), "placeholder"= ZERO) %] [% 'h' | $T8 %](1) + "data-validate"="number", "data-title"=LxERP.t8('h'), "placeholder"=LxERP.format_amount(0.00, 2)) %] [% 'h' | $T8 %](1) [% P.input_tag('duration_m', SELF.time_recording.duration_as_minutes || '', size=4, class='numeric', - "data-validate"="number", "data-title"=LxERP.t8('min'), "placeholder"="0") %] [% 'min' | $T8 %] + "data-validate"="number", "data-title"=LxERP.t8('min'), "placeholder"="0" ) %] [% 'min' | $T8 %] [%- ELSE %] -- 2.20.1