diff options
Diffstat (limited to 'UI')
-rw-r--r-- | UI/Contact/contact.html | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/UI/Contact/contact.html b/UI/Contact/contact.html index c061ac52..2ccd5491 100644 --- a/UI/Contact/contact.html +++ b/UI/Contact/contact.html @@ -229,6 +229,7 @@ problems with multi-word single-quoted constructs in PI tags. -CT --> <tr class="listheading"> <th class="account_class"><?lsmb text('Type') ?></th> <th class="number"><?lsmb text("Number") ?></th> + <th class="description"><?lsmb text("Description") ?></th> <th class="credit_limit"><?lsmb text('Credit Limit') ?></th> <th class="start_date"><?lsmb text('Start Date') ?></th> <th class="end_date"><?lsmb text('End Date') ?></th> @@ -242,6 +243,7 @@ problems with multi-word single-quoted constructs in PI tags. -CT --> <td><a href="<?lsmb script ?>?action=get&account_class=<?lsmb account_class ?>&entity_id=<?lsmb entity_id ?>&meta_number=<?lsmb cl_item.meta_number ?>"><?lsmb cl_item.meta_number ?></a></td> + <td><?lsmb cl_item.description ?></td> <td><?lsmb cl_item.credit_limit ?></td> <td><?lsmb cl_item.start_date ?></td> <td><?lsmb cl_item.end_date ?></td> @@ -265,14 +267,24 @@ problems with multi-word single-quoted constructs in PI tags. -CT --> name = "account_class" value = account_class } ?> - <?lsmb PROCESS input element_data = { + <table> + <tr class="eca_row"> + <td> + <?lsmb PROCESS input element_data = { label = text("$entity_classname Number:"), type= "text", name = "meta_number", value = meta_number, size = "20" - } # " ?><br/> - <table> + } # " ?></td> + <td><?lsmb PROCESS input element_data = { + label = text("Description:"), + type= "text", + name = "description", + value = description, + size = "20" + } ?></td> + </tr> <tr id="date-row"> <td> <?lsmb PROCESS input element_data = { |