Index: lib/api.php =================================================================== RCS file: /repository/hermes/lib/api.php,v retrieving revision 1.28 diff -u -r1.28 api.php --- lib/api.php 1 Aug 2005 17:19:47 -0000 1.28 +++ lib/api.php 2 Aug 2005 05:04:44 -0000 @@ -101,8 +101,10 @@ $colspan++; } $fColumns = array( - array('name' => 'blank1', - 'colspan' => $colspan), + array('name' => 'approval', + 'colspan' => $colspan, + 'type' => '%html', + 'align' => 'right'), array('name' => 'hours', 'type' => 'number', 'align' => 'right')); @@ -197,7 +199,10 @@ $result['footer'][] = array('hours' => sprintf('%.02f', $total_hours - $total_billable_hours), 'description' => $descr); $result['footer'][] = array('hours' => sprintf('%.02f', $total_hours), - 'description' => _("Total Hours")); + 'description' => _("Total Hours"), + 'approval' => '
' . + _("Approved By: ________________________________________ " . + ' 
')); break; } Index: templates/common-header.inc =================================================================== RCS file: /repository/hermes/templates/common-header.inc,v retrieving revision 1.12 diff -u -r1.12 common-header.inc --- templates/common-header.inc 27 May 2005 16:46:02 -0000 1.12 +++ templates/common-header.inc 2 Aug 2005 05:04:44 -0000 @@ -24,6 +24,8 @@ <?php echo $page_title ?> + + > New File: /repository/hermes/themes/print.css =================================================================== /** * $Horde$ * * Special handling for print media */ #menu { display: none; } #exportform { display: none; } #searchform { display: none; } New File: /repository/hermes/themes/screen.css =================================================================== /** * $Horde$ * * Special handling for screen media */ #approval { visibility: hidden; }