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

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



Revision: 1897
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1897&view=rev
Author:   einhverfr
Date:     2007-11-24 00:05:08 -0800 (Sat, 24 Nov 2007)

Log Message:
-----------
Moving Customer templates to be generally used by vendors, etc.

Modified Paths:
--------------
    trunk/UI/lib/ui-header.html
    trunk/UI/login.html

Added Paths:
-----------
    trunk/UI/Contact/
    trunk/UI/Contact/customer.css
    trunk/UI/Contact/customer.html

Removed Paths:
-------------
    trunk/UI/Contact/customer.css
    trunk/UI/Contact/customer.html
    trunk/UI/Customer/

Copied: trunk/UI/Contact (from rev 1886, trunk/UI/Customer)

Deleted: trunk/UI/Contact/customer.css
===================================================================
--- trunk/UI/Customer/customer.css	2007-11-21 06:13:54 UTC (rev 1886)
+++ trunk/UI/Contact/customer.css	2007-11-24 08:05:08 UTC (rev 1897)
@@ -1,20 +0,0 @@
-label {
-	text-align: right;
-	margin-left: auto;
-	margin-right: 0em;
-}
-
-input { margin-left: 0em;
-	margin-right: auto;
-}
-
-ul.navigation li {
-	display: inline;
-	padding-left: 1em;
-	padding-right: 1em;
-	padding-top: 0.5em;
-	padding-bottom: 0.5em;
-	margin-right: 1em;
-	margin-left: 1em;
-	margin-bottom: 0em;
-}

Copied: trunk/UI/Contact/customer.css (from rev 1896, trunk/UI/Customer/customer.css)
===================================================================
--- trunk/UI/Contact/customer.css	                        (rev 0)
+++ trunk/UI/Contact/customer.css	2007-11-24 08:05:08 UTC (rev 1897)
@@ -0,0 +1,20 @@
+label {
+	text-align: right;
+	margin-left: auto;
+	margin-right: 0em;
+}
+
+input { margin-left: 0em;
+	margin-right: auto;
+}
+
+ul.navigation li {
+	display: inline;
+	padding-left: 1em;
+	padding-right: 1em;
+	padding-top: 0.5em;
+	padding-bottom: 0.5em;
+	margin-right: 1em;
+	margin-left: 1em;
+	margin-bottom: 0em;
+}

Deleted: trunk/UI/Contact/customer.html
===================================================================
--- trunk/UI/Customer/customer.html	2007-11-21 06:13:54 UTC (rev 1886)
+++ trunk/UI/Contact/customer.html	2007-11-24 08:05:08 UTC (rev 1897)
@@ -1,326 +0,0 @@
-<?lsmb script_css = "Customer/customer.css" ?><?lsmb PROCESS 'ui-header.html' ?>
-<?lsmb PROCESS 'elements.html' ?>
-<body>
-    <?lsmb IF name ?> 
-    <div class="pageheading"><?lsmb name?></font>
-    <?lsmb END ?>
-<div class="navigation" id="nav_div">
-<ul class="navigation">
-	<li><a href="#customer_div"><?lsmb text('Account') ?></a></li>
-	<?lsmb IF entity_id ?>
-	<li><a href="#location_div"><?lsmb text('Addresses') ?></a></li>
-	<li><a href="#contact_div"><?lsmb text('Contact Info') ?></a></li>
-	<li><a href="#bank_div"><?lsmb text('Bank Accounts') ?></a></li>
-	<?lsmb END ?>
-</ul>
-</div>
-<div class="container" id="customer_div">
-<div class="listtop"><strong><?lsmb text('Add/Edit Customer') ?></strong></div>
-<form name="customer" method="POST" action="customer.pl">
-	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
-	<label for="name"><?lsmb text('Name:') ?></label>
-	<input name="name" id="name" type="text" value="<?lsmb name ?>"><br/>
-	<label for="meta_number"><?lsmb text('Account Number:') ?></label>
-	<input name="meta_number" id="meta_number" type="text" 
-		value="<?lsmb meta_number?>"><br/>
-        <table>
-       <?lsmb IF ordered ?> 
-        <tr>
-            <td><b><?lsmb text('Shipping Address') ?></b></td>
-            
-            <td><b><?lsmb text('Billing Address (if different)') ?></p></td>
-            
-        </tr>
-	<?lsmb END ?>
-        
-        
-        <?lsmb FOREACH entry = ordered  ?>
-        <tr>
-            <td>
-                <label for="shipping_<?lsmb entry ?>"><?lsmb text(entry) ?>:
-		</label>
-                <input id="shipping_<?lsmb entry ?>" type="text" 
-			name="shipping_<?lsmb entry ?>" 
-			value="<?lsmb entry ?>">
-            </td>
-            <td>
-                <input type="text" name="billing_<?lsmb entry ?>" 
-			value="<?lsmb entry ?>">
-            </td>            
-        </tr>
-        <?lsmb END ?>
-        <tr>
-            <td>
-                <label for="startdate"><?lsmb text('Starting Date:') ?>
-			"<?lsmb startdate ?>"</label>
-                    <input id="startdate" type="text" name="startdate" 
-			class="date" value="<?lsmb startdate ?>">
-            </td>
-            <td>
-                <label for="enddate"><?lsmb('End date:') ?></label>
-                    <input id="enddate" type="text" name="startdate" 
-			class="date" value="<?lsmb enddate ?>">
-            </td>
-        </tr>
-        <tr>
-            <td>
-                <label for="creditlimit"><?lsmb text('Credit Limit:') ?></label>
-                <input id="creditlimit" name="creditlimit" type="text" 
-			value="<?lsmb creditlimit ?>">
-            </td>
-            <td>
-                <label for="terms"><?lsmb text('Terms:') ?></label>
-                <input id="terms" name="terms" type="text" 
-			value="<?lsmb terms ?>"> days
-            </td>
-        </tr>
-        <tr>
-            
-            <td>
-                <label for="taxnumber"><?lsmb text('Tax Number/SSN:') ?></label>
-                <input id="taxnumber" name="taxnumber" type="text" 
-			value="<?lsmb taxnumber ?>">                
-            </td>
-            <td>
-                <label for="gifi_accno"><?lsmb text('Subcontract GIFI:') ?>
-		</label>
-                <input id="gifi_accno" name="gifi_accno" type="text" 
-			value="<?lsmb gifi_accno ?>">
-            </td>
-        </tr>
-	<tr>
-            <td>
-                <label for="discount"><?lsmb text('Discount:') ?></label>
-                <input id="discount" name="discount" type="text" size="3" 
-			maxlength="3" value="<?lsmb discount ?>">%/
-		<input id="discountdays" name="discount_terms" type="text" 
-		size="3" value="<?lsmb discount_terms ?>">  days
-            </td>
-            <td>
-                <label for="sic_code"><?lsmb text('SIC Code:') ?></label>
-                <input id="sic_code" name="sic_code" type="text" 
-			value="<?lsmb sic_code ?>">
-            </td>
-        </tr>
-        <tr>
-            
-        <tr>
-            <td>
-                <label for="notes"><?lsmb text('Notes:') ?></label><br/>
-                <textarea name="notes" rows="3" cols="40" id="notes"><?lsmb 
-			notes
-		?></textarea>
-		<!-- CT: The prior funny whitespace may look funny but it 
-		prevents additional whitespace from being added to the data 
-		every time it is saved.  -->
-            </td>
-        </tr>
-    </table>
-
-            <hr/>
-                <button class="submit" 
-			type="submit" 
-			name="action" 
-			value="save" 
-			accesskey="S" 
-			title="Save [Alt-S]"><?lsmb text('Save') ?></button>
-                <button class="submit" 
-                        type="submit" 
-                        name="action" 
-                        value="ap_transaction" 
-                        accesskey="A" 
-                        title="AP Transaction [Alt-A]">
-			<?lsmb text('AP Transaction') ?></button>
-                <button class="submit" 
-                        type="submit" 
-                        name="action" 
-                        value="customer_invoice" 
-                        accesskey="I" 
-                        title="customer Invoice [Alt-I]">
-			<?lsmb text('Customer Invoice') ?></button>
-                <button class="submit" 
-                        type="submit" 
-                        name="action" 
-                        value="purchase_order" 
-                        accesskey="O" 
-                        title="Purchase Order [Alt-O]">
-			<?lsmb text('Purchase Order') ?></button>
-                <button class="submit" 
-                        type="submit" 
-                        name="action" 
-                        value="rfq" 
-                        accesskey="Q" 
-                        title="RFQ [Alt-Q]"><?lsmb text('RFQ') ?></button>
-                <button class="submit" 
-                        type="submit" 
-                        name="action" 
-                        value="pricelist" 
-                        accesskey="P" 
-                        title="Pricelist [Alt-P]">
-			<?lsmb text('Pricelist') ?></button>
-    </form>
-</div>
-<?lsmb IF entity_id ?>
-<div id="location_div" class="container">
-    <div class="listtop"><?lsmb text('Locations') ?></div>
-	<!-- This entire form should probably be optionaly automated with AJAX
-	in oder to prevent user confusion -->
-    <form id="location_form" action="customer.pl">
-	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
-	<input type="hidden" name="location_id" value="<?lsmb location_id ?>">
-    <table width="100%">
-    <tr class="listheading">
-        <th class="type"><?lsmb text('Type') ?></th>
-        <th class="line_one"><?lsmb text('Address1') ?></th>
-        <th class="city"><?lsmb text('City') ?></th>
-        <th class="state"><?lsmb text('State/Province') ?></th>
-        <th class="mail_code"><?lsmb text('ZIP/Post Code') ?></th>
-        <th class="country"><?lsmb text('Country') ?></th>
-	<th class="actions"><?lsmb text('Actions') ?></th>
-    </tr>
-	<?lsmb FOREACH loc = locations ?>
-    <tr>
-	<td class="type"><?lsmb loc.type ?></td>
-	<td class="line_one"><?lsmb loc.line_one ?></td>
-	<td class="city"><?lsmb loc.city ?></td>
-	<td class="state"><?lsmb loc.state ?></td>
-	<td class="mail_code"><?lsmb loc.mail_code ?></td>
-	<td class="country"><?lsmb loc.country ?></td>
-	<td class="actions">
-		<!--  TODO:  Automate links with AJAX -->
-		<a href="customer.pl?action=edit&entity_id=<?lsmb id 
-			?>&location_id=<?lsmb loc.id ?>">[edit]</a> 
-		<a href="customer.pl?action=delete_location&entity_id=<?lsmb
-			id ?>&location_id=<?lmb loc.id ?>">[delete]</a>
-	</td>
-    </tr>
-	<?lsmb END ?>
-    </table>
-	<div> 
-		<label for="loc_type"><?lsmb text('Type:') ?></label>
-		<select name='loc_type'>
-		<?lsmb FOREACH lc = location_class ?>
-		<option value="<?lsmb lc.id ?>"><?lsmb lc.class ?></option>
-		<?lsmb END ?>
-		</select>
-	</div>
-	<div> 
-		<label for="line_one"><?lsmb text('Address:') ?></label>
-		<input name="line_one" id="line_one"/>
-	</div>
-	<div> 
-		<input name="line_two" id="line_two"/>
-	</div>
-	<div> 
-		<input name="line_three" id="line_three"/>
-	</div>
-	<div> 
-		<label for="city"><?lsmb text('City:') ?></label>
-		<input name="city" id="city"/>
-	</div>
-	<div> 
-		<label for="state"><?lsmb text('State/Province:') ?></label>
-		<input name="state" id="state"/>
-	</div>
-	<div> 
-		<label for="mail_code"><?lsmb text('Zip/Post Code:') ?></label>
-		<input name="mail_code" id="mail_code"/>
-	</div>
-	<div> 
-		<label for="country"><?lsmb text('Country:') ?></label>
-		<select name="country" id="country">
-		<?lsmb FOREACH c = country ?>
-		<option value="<?lsmb c.id ?>"><?lsmb c.name ?></option>
-		<?lsmb END ?>
-		</select>
-	</div>
-	<div><button type=submit class="submit" name="action" 
-		value="add_location" id="loc_save_location">
-		<?lsmb text('Save Location') ?></button>
-	</div>
-    </form>
-</div>
-<div class="container" id="contact_div">
-	<div class="listtop"><?lsmb text('Contact Information') ?></div>
-	<table width="100%">
-	<tr class="listheading">
-		<th class="contact_class"><?lsmb text('Type:') ?></th>
-		<th class="contact"><?lsmb text('Contact Info:') ?></th>
-		<th class="contact_actions"><?lsmb text('Actions:') ?></th>
-	</tr>
-	<?lsmb FOREACH ct = contacts ?>
-	<tr>
-		<td class="contact_class"><?lsmb ct.class ?></td>
-		<td class="contact"><?lsmb ct.contact ?></td>
-		<td class="contact_actions">
-			<a href="customer.pl?entity_id=<?lsmb entity_id 
-				?>&contact_id=<?lsmb ct.id 
-				?>&action=edit_contact"
-			>[<?lsmb text('Edit'); ?>]</a>&nbsp;&nbsp;
-			<a href="customer.pl?entity_id=<?lsmb entity_id 
-				?>&contact_id=<?lsmb ct.id 
-				?>&action=delete_contact"
-			>[<?lsmb text('Delete'); ?>]</a>
-		</td>
-	</tr>
-	<?lsmb END ?>
-	</table>
-	<form action="customer.pl">
-	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
-	<input type="hidden" name="contact_id" value="<?lsmb contact_id ?>">
-	<div><label for="contact_type"><?lsmb text('Type:') ?></label>
-		<select name="contact_class" id="contact_type">
-		<?lsmb FOREACH cc = contact_class ?>
-		<option value="<?lsmb cc.id ?>"><?lsmb cc.class ?></option>
-		<?lsmb END ?>
-		</select>
-	</div>
-	<div><label for="contact_info"><?lsmb text('Contact Info:') ?></label>
-	<input type="text" id="contact_info" name="contact" 
-		value="<?lsmb contact ?>">
-	</div>
-	<div><button name="action" id="contact_action_save" 
-		value="save_contact"><?lsmb text('Save Contact') ?></button>
-	</div>
-	
-</div>
-<div class="container" id="bank_div">
-<div class="listtop"><?lsmb text('Bank Accounts') ?></div>
-<table width="100%">
-<tr class="listheading">
-	<th class="bic"><?lsmb text('BIC/SWIFT Code') ?></th>
-	<th class="iban"><?lsmb text('Account Number') ?></th>
-	<th class="actions"><?lsmb text('Actions>') ?></th>
-</tr>
-<?lsmb FOREACH ba = bank_account ?>
-<tr>
-	<td class="bic"><?lsmb ba.bic ?></td>
-	<td class="iban"><?lsmb ba.iban ?></td>
-	<td class="actions">
-		<a href="customer.pl?action=edit_bank_acct&entity_id=<?lsmb
-			entity_id ?>&bank_account_id=<?lsmb ba.id ?>"
-			>[Edit]</a> 
-		<a href="customer.pl?action=delete_bank_acct&entity_id=<?lsmb
-			entity_id ?>&bank_account_id=<?lsmb ba.id ?>"
-			>[Delete]</a> 
-	</td>
-</tr>
-<?lsmb END ?>
-</table>
-<form action="customer.pl">
-	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
-	<input type="hidden" name="bank_account_id" 
-		value="<?lsmb bank_account_id ?>">
-	<div><label for="bic"><?lsmb text('BIC/SWIFT Code:') ?></label>
-		<input type="text" name="bic" id="bic" value="<?lsmb bic ?>">
-	</div>
-	<div><label for="iban"><?lsmb text('Bank Account:') ?></label>
-		<input type="text" name="iban" id="iban" value="<?lsmb iban ?>">
-	</div>
-	<div><button id="bank_account_save" name="action" 
-		value="save_bank_account"><?lsmb text('Save') ?></button>
-	</div>
-</div>
-<?lsmb END ?>
-</body>
-</html>

Copied: trunk/UI/Contact/customer.html (from rev 1896, trunk/UI/Customer/customer.html)
===================================================================
--- trunk/UI/Contact/customer.html	                        (rev 0)
+++ trunk/UI/Contact/customer.html	2007-11-24 08:05:08 UTC (rev 1897)
@@ -0,0 +1,329 @@
+<?lsmb script_css = "Customer/customer.css" ?><?lsmb PROCESS 'ui-header.html' ?>
+<?lsmb PROCESS 'elements.html' ?>
+<body>
+    <?lsmb IF name ?> 
+    <div class="pageheading"><?lsmb name?></font>
+    <?lsmb END ?>
+<div class="navigation" id="nav_div">
+<ul class="navigation">
+	<li><a href="#customer_div"><?lsmb text('Account') ?></a></li>
+	<?lsmb IF entity_id ?>
+	<li><a href="#location_div"><?lsmb text('Addresses') ?></a></li>
+	<li><a href="#contact_div"><?lsmb text('Contact Info') ?></a></li>
+	<li><a href="#bank_div"><?lsmb text('Bank Accounts') ?></a></li>
+	<?lsmb END ?>
+</ul>
+</div>
+<div class="container" id="customer_div">
+<div class="listtop"><strong><?lsmb text('Add/Edit Customer') ?></strong></div>
+<?lsmb FOREACH n = notes ?>
+<div class="entity_note"><?lsmb n.note ?></div>
+<?lsmb END ?>
+<form name="customer" method="POST" action="customer.pl">
+	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
+	<label for="name"><?lsmb text('Name:') ?></label>
+	<input name="name" id="name" type="text" value="<?lsmb name ?>"><br/>
+	<label for="meta_number"><?lsmb text('Account Number:') ?></label>
+	<input name="meta_number" id="meta_number" type="text" 
+		value="<?lsmb meta_number?>"><br/>
+        <table>
+       <?lsmb IF ordered ?> 
+        <tr>
+            <td><b><?lsmb text('Shipping Address') ?></b></td>
+            
+            <td><b><?lsmb text('Billing Address (if different)') ?></p></td>
+            
+        </tr>
+	<?lsmb END ?>
+        
+        
+        <?lsmb FOREACH entry = ordered  ?>
+        <tr>
+            <td>
+                <label for="shipping_<?lsmb entry ?>"><?lsmb text(entry) ?>:
+		</label>
+                <input id="shipping_<?lsmb entry ?>" type="text" 
+			name="shipping_<?lsmb entry ?>" 
+			value="<?lsmb entry ?>">
+            </td>
+            <td>
+                <input type="text" name="billing_<?lsmb entry ?>" 
+			value="<?lsmb entry ?>">
+            </td>            
+        </tr>
+        <?lsmb END ?>
+        <tr>
+            <td>
+                <label for="startdate"><?lsmb text('Starting Date:') ?>
+			"<?lsmb startdate ?>"</label>
+                    <input id="startdate" type="text" name="startdate" 
+			class="date" value="<?lsmb startdate ?>">
+            </td>
+            <td>
+                <label for="enddate"><?lsmb('End date:') ?></label>
+                    <input id="enddate" type="text" name="startdate" 
+			class="date" value="<?lsmb enddate ?>">
+            </td>
+        </tr>
+        <tr>
+            <td>
+                <label for="creditlimit"><?lsmb text('Credit Limit:') ?></label>
+                <input id="creditlimit" name="creditlimit" type="text" 
+			value="<?lsmb creditlimit ?>">
+            </td>
+            <td>
+                <label for="terms"><?lsmb text('Terms:') ?></label>
+                <input id="terms" name="terms" type="text" 
+			value="<?lsmb terms ?>"> days
+            </td>
+        </tr>
+        <tr>
+            
+            <td>
+                <label for="taxnumber"><?lsmb text('Tax Number/SSN:') ?></label>
+                <input id="taxnumber" name="taxnumber" type="text" 
+			value="<?lsmb taxnumber ?>">                
+            </td>
+            <td>
+                <label for="gifi_accno"><?lsmb text('Subcontract GIFI:') ?>
+		</label>
+                <input id="gifi_accno" name="gifi_accno" type="text" 
+			value="<?lsmb gifi_accno ?>">
+            </td>
+        </tr>
+	<tr>
+            <td>
+                <label for="discount"><?lsmb text('Discount:') ?></label>
+                <input id="discount" name="discount" type="text" size="3" 
+			maxlength="3" value="<?lsmb discount ?>">%/
+		<input id="discountdays" name="discount_terms" type="text" 
+		size="3" value="<?lsmb discount_terms ?>">  days
+            </td>
+            <td>
+                <label for="sic_code"><?lsmb text('SIC Code:') ?></label>
+                <input id="sic_code" name="sic_code" type="text" 
+			value="<?lsmb sic_code ?>">
+            </td>
+        </tr>
+        <tr>
+            
+        <tr>
+            <td>
+                <label for="notes"><?lsmb text('Notes:') ?></label><br/>
+
+                <textarea name="notes" rows="3" cols="40" id="notes"></textarea>
+		<!-- CT: The prior funny whitespace may look funny but it 
+		prevents additional whitespace from being added to the data 
+		every time it is saved.  -->
+            </td>
+        </tr>
+    </table>
+
+            <hr/>
+                <button class="submit" 
+			type="submit" 
+			name="action" 
+			value="save" 
+			accesskey="S" 
+			title="Save [Alt-S]"><?lsmb text('Save') ?></button>
+                <button class="submit" 
+                        type="submit" 
+                        name="action" 
+                        value="ap_transaction" 
+                        accesskey="A" 
+                        title="AP Transaction [Alt-A]">
+			<?lsmb text('AP Transaction') ?></button>
+                <button class="submit" 
+                        type="submit" 
+                        name="action" 
+                        value="customer_invoice" 
+                        accesskey="I" 
+                        title="customer Invoice [Alt-I]">
+			<?lsmb text('Customer Invoice') ?></button>
+                <button class="submit" 
+                        type="submit" 
+                        name="action" 
+                        value="purchase_order" 
+                        accesskey="O" 
+                        title="Purchase Order [Alt-O]">
+			<?lsmb text('Purchase Order') ?></button>
+                <button class="submit" 
+                        type="submit" 
+                        name="action" 
+                        value="rfq" 
+                        accesskey="Q" 
+                        title="RFQ [Alt-Q]"><?lsmb text('RFQ') ?></button>
+                <button class="submit" 
+                        type="submit" 
+                        name="action" 
+                        value="pricelist" 
+                        accesskey="P" 
+                        title="Pricelist [Alt-P]">
+			<?lsmb text('Pricelist') ?></button>
+    </form>
+</div>
+<?lsmb IF entity_id ?>
+<div id="location_div" class="container">
+    <div class="listtop"><?lsmb text('Locations') ?></div>
+	<!-- This entire form should probably be optionaly automated with AJAX
+	in oder to prevent user confusion -->
+    <form id="location_form" action="customer.pl">
+	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
+	<input type="hidden" name="location_id" value="<?lsmb location_id ?>">
+    <table width="100%">
+    <tr class="listheading">
+        <th class="type"><?lsmb text('Type') ?></th>
+        <th class="line_one"><?lsmb text('Address1') ?></th>
+        <th class="city"><?lsmb text('City') ?></th>
+        <th class="state"><?lsmb text('State/Province') ?></th>
+        <th class="mail_code"><?lsmb text('ZIP/Post Code') ?></th>
+        <th class="country"><?lsmb text('Country') ?></th>
+	<th class="actions"><?lsmb text('Actions') ?></th>
+    </tr>
+	<?lsmb FOREACH loc = locations ?>
+    <tr>
+	<td class="type"><?lsmb loc.class ?></td>
+	<td class="line_one"><?lsmb loc.line_one ?></td>
+	<td class="city"><?lsmb loc.city ?></td>
+	<td class="state"><?lsmb loc.state ?></td>
+	<td class="mail_code"><?lsmb loc.mail_code ?></td>
+	<td class="country"><?lsmb loc.country ?></td>
+	<td class="actions">
+		<!--  TODO:  Automate links with AJAX -->
+		<a href="customer.pl?action=edit&entity_id=<?lsmb id 
+			?>&location_id=<?lsmb loc.id ?>">[edit]</a> 
+		<a href="customer.pl?action=delete_location&entity_id=<?lsmb
+			id ?>&location_id=<?lmb loc.id ?>">[delete]</a>
+	</td>
+    </tr>
+	<?lsmb END ?>
+    </table>
+	<div> 
+		<label for="loc_type"><?lsmb text('Type:') ?></label>
+		<select id='loc_type' name="location_class">
+		<?lsmb FOREACH lc = location_class_list ?>
+		<option value="<?lsmb lc.id ?>"><?lsmb lc.class ?></option>
+		<?lsmb END ?>
+		</select>
+	</div>
+	<div> 
+		<label for="line_one"><?lsmb text('Address:') ?></label>
+		<input name="line_one" id="line_one"/>
+	</div>
+	<div> 
+		<input name="line_two" id="line_two"/>
+	</div>
+	<div> 
+		<input name="line_three" id="line_three"/>
+	</div>
+	<div> 
+		<label for="city"><?lsmb text('City:') ?></label>
+		<input name="city" id="city"/>
+	</div>
+	<div> 
+		<label for="state"><?lsmb text('State/Province:') ?></label>
+		<input name="state" id="state"/>
+	</div>
+	<div> 
+		<label for="mail_code"><?lsmb text('Zip/Post Code:') ?></label>
+		<input name="mail_code" id="mail_code"/>
+	</div>
+	<div> 
+		<label for="country"><?lsmb text('Country:') ?></label>
+		<select name="country" id="country">
+		<?lsmb FOREACH c = country_list ?>
+		<option value="<?lsmb c.id ?>"><?lsmb c.name ?></option>
+		<?lsmb END ?>
+		</select>
+	</div>
+	<div><button type=submit class="submit" name="action" 
+		value="add_location" id="loc_save_location">
+		<?lsmb text('Save Location') ?></button>
+	</div>
+    </form>
+</div>
+<div class="container" id="contact_div">
+	<div class="listtop"><?lsmb text('Contact Information') ?></div>
+	<table width="100%">
+	<tr class="listheading">
+		<th class="contact_class"><?lsmb text('Type:') ?></th>
+		<th class="contact"><?lsmb text('Contact Info:') ?></th>
+		<th class="contact_actions"><?lsmb text('Actions:') ?></th>
+	</tr>
+	<?lsmb FOREACH ct = contacts ?>
+	<tr>
+		<td class="contact_class"><?lsmb ct.class ?></td>
+		<td class="contact"><?lsmb ct.contact ?></td>
+		<td class="contact_actions">
+			<a href="customer.pl?entity_id=<?lsmb entity_id 
+				?>&contact_id=<?lsmb ct.id 
+				?>&action=edit_contact"
+			>[<?lsmb text('Edit'); ?>]</a>&nbsp;&nbsp;
+			<a href="customer.pl?entity_id=<?lsmb entity_id 
+				?>&contact_id=<?lsmb ct.id 
+				?>&action=delete_contact"
+			>[<?lsmb text('Delete'); ?>]</a>
+		</td>
+	</tr>
+	<?lsmb END ?>
+	</table>
+	<form action="customer.pl">
+	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
+	<input type="hidden" name="contact_id" value="<?lsmb contact_id ?>">
+	<div><label for="contact_type"><?lsmb text('Type:') ?></label>
+		<select name="contact_class" id="contact_type">
+		<?lsmb FOREACH cc = contact_class_list ?>
+		<option value="<?lsmb cc.id ?>"><?lsmb cc.class ?></option>
+		<?lsmb END ?>
+		</select>
+	</div>
+	<div><label for="contact_info"><?lsmb text('Contact Info:') ?></label>
+	<input type="text" id="contact_info" name="contact" 
+		value="<?lsmb contact ?>">
+	</div>
+	<div><button name="action" id="contact_action_save" 
+		value="save_contact"><?lsmb text('Save Contact') ?></button>
+	</div>
+</form>
+	
+</div>
+<div class="container" id="bank_div">
+<div class="listtop"><?lsmb text('Bank Accounts') ?></div>
+<table width="100%">
+<tr class="listheading">
+	<th class="bic"><?lsmb text('BIC/SWIFT Code') ?></th>
+	<th class="iban"><?lsmb text('Account Number') ?></th>
+	<th class="actions"><?lsmb text('Actions>') ?></th>
+</tr>
+<?lsmb FOREACH ba = bank_account ?>
+<tr>
+	<td class="bic"><?lsmb ba.bic ?></td>
+	<td class="iban"><?lsmb ba.iban ?></td>
+	<td class="actions">
+		<a href="customer.pl?action=edit_bank_acct&entity_id=<?lsmb
+			entity_id ?>&bank_account_id=<?lsmb ba.id ?>"
+			>[Edit]</a> 
+		<a href="customer.pl?action=delete_bank_acct&entity_id=<?lsmb
+			entity_id ?>&bank_account_id=<?lsmb ba.id ?>"
+			>[Delete]</a> 
+	</td>
+</tr>
+<?lsmb END ?>
+</table>
+<form name="bank_acct" action="customer.pl">
+	<input type="hidden" name="entity_id" value="<?lsmb entity_id ?>">
+	<input type="hidden" name="bank_account_id" 
+		value="<?lsmb bank_account_id ?>">
+	<div><label for="bic"><?lsmb text('BIC/SWIFT Code:') ?></label>
+		<input type="text" name="bic" id="bic" value="<?lsmb bic ?>">
+	</div>
+	<div><label for="iban"><?lsmb text('Bank Account:') ?></label>
+		<input type="text" name="iban" id="iban" value="<?lsmb iban ?>">
+	</div>
+	<div><button id="bank_account_save" name="action" 
+		value="save_bank_account"><?lsmb text('Save') ?></button>
+	</div>
+</div>
+<?lsmb END ?>
+</body>
+</html>

Modified: trunk/UI/lib/ui-header.html
===================================================================
--- trunk/UI/lib/ui-header.html	2007-11-24 04:59:29 UTC (rev 1896)
+++ trunk/UI/lib/ui-header.html	2007-11-24 08:05:08 UTC (rev 1897)
@@ -2,7 +2,7 @@
 		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
-	<title><?lsmb form.titlebar ?></title>
+	<title><?lsmb form.titlebar ? form.titlebar : titlebar ?></title>
 	<meta http-equiv="Pragma" content="no-cache" />
 	<meta http-equiv="Expires" content="-1" />
 	<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

Modified: trunk/UI/login.html
===================================================================
--- trunk/UI/login.html	2007-11-24 04:59:29 UTC (rev 1896)
+++ trunk/UI/login.html	2007-11-24 08:05:08 UTC (rev 1897)
@@ -2,6 +2,9 @@
 		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
+        <!--  TODO:  Allow the ui-header to be used for this file 
+	Also, move all elements to elements.html
+	CT  -->
 	<title>LedgerSMB <?lsmb VERSION ?></title>
 	<meta http-equiv="Pragma" content="no-cache" />
 	<meta http-equiv="Expires" content="-1" />
@@ -58,6 +61,7 @@
 }
 	</script>
 </head>
+<?lsmb PROCESS elements.html ?>
 
 		 
 
@@ -67,8 +71,11 @@
 	<center>
 		<form method="post" action="login.pl" name="login"
 			onsubmit="return submit_form()">
-		<input type="hidden" name="menubar" 
-			value="<?lsmb menubar ?>">
+		<?lsmb PROCESS input element_data = {
+			type = "hidden",
+			name = "menubar",
+			value = menubar
+		} ?> 
 		<div class="login">
 			<div class="login" align="center">
 				<a href="http://www.ledgersmb.org/"; target="_top"><img src="images/ledgersmb.png" class="logo" alt="LedgerSMB Logo" /></a>


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