diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-11-09 17:05:36 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-11-09 17:05:36 -0600 |
commit | 96b69dd1aa5c8045b5a4297ecea510d60f575251 (patch) | |
tree | fbe98f788ff92323990e7f778df466c8b0529985 /httemplate/edit/quotation_pkg_detail.html | |
parent | b3c70d709fd646ef355d49a4e87151c99ee413e9 (diff) |
RT#34960: Quotations [changed billpkgnum to quotationpkgnum]
Diffstat (limited to 'httemplate/edit/quotation_pkg_detail.html')
-rw-r--r-- | httemplate/edit/quotation_pkg_detail.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/edit/quotation_pkg_detail.html b/httemplate/edit/quotation_pkg_detail.html index b8f589a9a..80a904420 100644 --- a/httemplate/edit/quotation_pkg_detail.html +++ b/httemplate/edit/quotation_pkg_detail.html @@ -21,15 +21,11 @@ <TD BGCOLOR="#ffffff"><% $part_pkg->comment |h %></TD> </TR> - <TR> - <TD COLSPAN=2>Detail: </TD> - </TR> - % my $row = 0; % for ( @details ) { <TR> - <TD></TD> + <TD ALIGN="right"><% $row ? '' : 'Detail' %></TD> <TD> <INPUT TYPE="text" NAME="detail<% $row %>" SIZE="60" MAXLENGTH="65" VALUE="<% $_ |h %>" rownum="<% $row++ %>" onkeyup="possiblyAddRow" onchange="possiblyAddrow"> </TD> @@ -63,6 +59,10 @@ var row = document.createElement('TR'); var empty_cell = document.createElement('TD'); + if (!rownum) { + empty_cell.innerHTML = 'Detail:' + empty_cell.style.textAlign = 'right'; + } row.appendChild(empty_cell); var detail_cell = document.createElement('TD'); |