X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/0b379eb7277555af8e7363bbe66b9e39c7b1d0e8..14a6ab5e563acb66d090c6c291b5d51b1a31fae7:/timesheet_add.php?ds=inline diff --git a/timesheet_add.php b/timesheet_add.php index 9e6b9acd..1ab4b704 100644 --- a/timesheet_add.php +++ b/timesheet_add.php @@ -52,6 +52,10 @@ if ($request->isPost()) { $form = new Form('timesheetForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'timesheet_name','style'=>'width: 250px;','value'=>$cl_name)); + +$form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'start','value'=>$cl_start)); +$form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'finish','value'=>$cl_finish)); + $form->addInput(array('type'=>'textarea','name'=>'submitter_comment','style'=>'width: 250px; height: 40px;','value'=>$cl_comment)); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->get('button.add')));