[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[6715] trunk/UI



Revision: 6715
          http://sourceforge.net/p/ledger-smb/code/6715
Author:   einhverfr
Date:     2014-01-30 12:01:18 +0000 (Thu, 30 Jan 2014)
Log Message:
-----------
Correcting layout issues on payment screens, including bug 1011

Modified Paths:
--------------
    trunk/UI/create_batch.html
    trunk/UI/payments/payments_detail.html
    trunk/UI/payments/payments_filter.html

Modified: trunk/UI/create_batch.html
===================================================================
--- trunk/UI/create_batch.html	2014-01-30 11:30:45 UTC (rev 6714)
+++ trunk/UI/create_batch.html	2014-01-30 12:01:18 UTC (rev 6715)
@@ -11,7 +11,7 @@
 <div class="listtop"><?lsmb text('Create New Batch') ?></div>
 <form name="create_batch" method="post">
 <div class="labelledinput">
-  <div class="input">
+  <div class="inputgroup">
     <?lsmb text("Batch Number") ?>
   </div>
   <div class="value">
@@ -21,7 +21,7 @@
   <div class="label">
     <?lsmb text("Description") ?>
   </div>
-  <div class="input">
+  <div class="inputgroup">
     <input name="description" type="text" value="<?lsmb batch_number ?>"/>
   </div>
 </div>
@@ -29,7 +29,7 @@
   <div class="label">
      <?lsmb text("Batch Date") ?>
   </div>
-  <div class="input">
+  <div class="inputgroup">
      <input type=text class=date name="batch_date" 
             value="<?lsmb batch_date ?>" />
   </div>

Modified: trunk/UI/payments/payments_detail.html
===================================================================
--- trunk/UI/payments/payments_detail.html	2014-01-30 11:30:45 UTC (rev 6714)
+++ trunk/UI/payments/payments_detail.html	2014-01-30 12:01:18 UTC (rev 6715)
@@ -253,7 +253,7 @@
 	<td class="invoice"><?lsmb r.to_pay ?> 
 		<?lsmb currency ?></td>
         <td>
-		<span class="details_select">
+		<span class="details_select"><div class="input">
 		<?lsmb INCLUDE input element_data = {
 		name = "paid_$r.contact_id"
 		value = "some"
@@ -262,7 +262,7 @@
 		label = text('Some')
 		checked = (${"paid_$r.contact_id"} == 'some') ? "checked" : ""
 		type = "radio"
-	 }	?>
+	 }	?></div><div class="input">
 		<?lsmb INCLUDE input element_data = {
 		name = "paid_$r.contact_id"
 		value = "all"
@@ -271,7 +271,7 @@
 		label = text('All')
 		checked = (${"paid_$r.contact_id"} != 'some') ? "checked" : ""
 		type = "radio"
-	 }	?></span>
+	 }	?></div></span>
 	</td>
 	<td rowspan = 2><?lsmb INCLUDE input element_data = {
 		name = "source_$r.contact_id"

Modified: trunk/UI/payments/payments_filter.html
===================================================================
--- trunk/UI/payments/payments_filter.html	2014-01-30 11:30:45 UTC (rev 6714)
+++ trunk/UI/payments/payments_filter.html	2014-01-30 12:01:18 UTC (rev 6715)
@@ -37,7 +37,7 @@
 } ?>
 <div id = "payments-filter-categories" class="inputgroup">
 <?lsmb IF projects ?>
-<div id = "payments-filter-projects" class="input">
+<div id = "payments-filter-projects" class="inputgroup">
   <label for="project"><?lsmb text('Project') ?></label>
   <select name="project_id" id="project">
   <?lsmb FOREACH p = projects ?>
@@ -48,7 +48,7 @@
 <?lsmb END ?>
 
 <?lsmb IF departments ?>
-<div id = "payments-filter-departments" class="input">
+<div id = "payments-filter-departments" class="inputgroup">
   <label for="department"><?lsmb text('Department') ?></label>
   <select name="department_id" id="department">
 		<option value=""></option>
@@ -74,7 +74,7 @@
 } ?>
 
 <?lsmb IF businesses ?>
-<div id = "payments-filter-businesses" class="input">
+<div id = "payments-filter-businesses" class="inputgroup">
   <label for="businesses"><?lsmb text('Business Class') ?></label>
   <select name="business_id" id="businesses">
 		<option value=""></option>
@@ -85,7 +85,7 @@
 </div>
 <?lsmb END ?>
 </div>
-<div class="input" id="account_input">
+<div class="inputgroup" id="account_input">
     <?lsmb
      FOREACH a = debt_accounts;
        a.text = a.accno _ '--' _ a.description;
@@ -100,7 +100,7 @@
     } ?>
 </div>
 <div id = "payments-filter-daterow" class = "inputgroup">
-<span class="input">
+<div class="input">
 <?lsmb PROCESS input element_data = {
 	label = text('Date From:')
 	type = "text"
@@ -108,7 +108,7 @@
 	value = date_from
 	name = "date_from"
 	size = 12
-} # ' ?></span><span class="input">
+} # ' ?></div><div class="input">
 <?lsmb PROCESS input element_data = {
 	label = text('Date To:')
 	type = "text"
@@ -116,7 +116,7 @@
 	value = date_to
 	name = "date_to"
 	size = 12
-} # ' ?></span>
+} # ' ?></div>
 </div>
 <div id = "payments-filter-currency-row" class="inputgroup" ?>
 <label for="currency"><?lsmb text('Currency')?></label>
@@ -152,7 +152,7 @@
 		options = payment_types
 		value_attr = "id"
 		text_attr = "label"
-		label = text('Payment Type:') 
+		label = text('Payment Type:') #'
 	} ?> 
 
 
@@ -164,7 +164,7 @@
 
 
 
-<div class = "input">
+<div class = "inputgroup">
 <?lsmb INCLUDE input element_data = {
 	type = "text"
 	size = "20"
@@ -172,13 +172,14 @@
 	label = text('Start Source Numbering At:')
 } # '?>
 </div>
+<div>
 <?lsmb INCLUDE button element_data = {
 	type = "submit"
 	name = "action"
 	text = text('Continue')
 	class = "submit"
 	value = "display_payments"
-} ?>
+} ?></div>
 </form>
 </body>
 </html>

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Ledger-smb-commits mailing list
..hidden..
https://lists.sourceforge.net/lists/listinfo/ledger-smb-commits