From: <tim...@us...> - 2010-06-19 18:42:03
|
Revision: 3508 http://web-erp.svn.sourceforge.net/web-erp/?rev=3508&view=rev Author: tim_schofield Date: 2010-06-19 18:41:57 +0000 (Sat, 19 Jun 2010) Log Message: ----------- Layout improvements Modified Paths: -------------- trunk/AccountGroups.php trunk/doc/Change.log.html Modified: trunk/AccountGroups.php =================================================================== --- trunk/AccountGroups.php 2010-06-19 17:53:46 UTC (rev 3507) +++ trunk/AccountGroups.php 2010-06-19 18:41:57 UTC (rev 3508) @@ -225,7 +225,7 @@ $result = DB_query($sql,$db,$ErrMsg,$DbgMsg); echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="">' . ' ' . $title.'<br>'; - echo '<table> + echo '<table class=selection> <tr> <th>' . _('Group Name') . "</th> <th>" . _('Section') . "</th> @@ -271,12 +271,12 @@ if (isset($_POST['SelectedAccountGroup']) OR isset($_GET['SelectedAccountGroup'])) { - echo '<div class="centre"><a href="' . $_SERVER['PHP_SELF'] . '?' . SID .'">' . _('Review Account Groups') . '</a></div>'; + echo '<br><div class="centre"><a href="' . $_SERVER['PHP_SELF'] . '?' . SID .'">' . _('Review Account Groups') . '</a></div>'; } if (! isset($_GET['delete'])) { - echo '<form method="post" id="AccountGroups" action="' . $_SERVER['PHP_SELF'] . '?' . SID . '">'; + echo '<br><form method="post" id="AccountGroups" action="' . $_SERVER['PHP_SELF'] . '?' . SID . '">'; if (isset($_GET['SelectedAccountGroup'])) { //editing an existing account group @@ -300,7 +300,7 @@ $_POST['PandL'] = $myrow['pandl']; $_POST['ParentGroupName'] = $myrow['parentgroupname']; - echo '<table><tr><td>'; + echo '<table class=selection><tr><td>'; echo '<input type="hidden" name="SelectedAccountGroup" value="' . $_GET['SelectedAccountGroup'] . '" />'; echo '<input type="hidden" name="GroupName" value="' . $_POST['GroupName'] . '" />'; @@ -326,7 +326,7 @@ $_POST['PandL']=''; } - echo '<table style="margin: 10px auto;"><tr><td>'; + echo '<br><table class=selection><tr><td>'; echo '<input type="hidden" name="SelectedAccountGroup" value="' . $_POST['SelectedAccountGroup'] . '" />'; echo _('Account Group Name') . ':' . '</td><td> <input tabindex="1" ' . (in_array('GroupName',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="GroupName" size="50" maxlength="50" value="' . $_POST['GroupName'] . '" /></td></tr>'; @@ -391,10 +391,10 @@ ' type="text" maxlength="4" name="SequenceInTB" class=number value="' . $_POST['SequenceInTB'] . '" /></td></tr>'; + echo '<tr><td colspan=2><div class="centre"><input tabindex="6" type="submit" name="submit" value="' . _('Enter Information') . '" /></div></td></tr>'; + echo '</table>'; - echo '<div class="centre"><input tabindex="6" type="submit" name="submit" value="' . _('Enter Information') . '" /></div>'; - echo '<script type="text/javascript">defaultControl(document.forms[0].GroupName);</script>'; echo '</form>'; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-06-19 17:53:46 UTC (rev 3507) +++ trunk/doc/Change.log.html 2010-06-19 18:41:57 UTC (rev 3508) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>18/06/10 Tim: AccountGroups.php - Layout improvements</p> <p>18/06/10 Tim: Areas.php - Layout improvements, and link to SearchCustomer.php</p> <p>18/06/10 Tim: SelectCustomers.php - Add facility to search by sales area</p> <p>18/06/10 Tim: WWW_Users.php - Add a field in for the supplier code</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |