You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ap...@apache.org on 2009/05/29 21:18:04 UTC

svn commit: r780078 - /ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl

Author: apatel
Date: Fri May 29 19:18:04 2009
New Revision: 780078

URL: http://svn.apache.org/viewvc?rev=780078&view=rev
Log:
Made changes to use correct html. This change in html cause little change in UI. We don't get bottom border with each line item. Very soon I'll add css class and apply to this list so we get back the original look.

Modified:
    ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl

Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl?rev=780078&r1=780077&r2=780078&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/minipromotext.ftl Fri May 29 19:18:04 2009
@@ -24,17 +24,19 @@
     </div>
     <div class="screenlet-body">
         <#-- show promotions text -->
+        <ul>
         <#list productPromos as productPromo>
+          <li>
             <p>
                 <a href="<@o...@ofbizUrl>" class="linktext">${uiLabelMap.CommonDetails}</a>
                 ${StringUtil.wrapString(productPromo.promoText?if_exists)}
             </p>
-            <#if productPromo_has_next>
-                <div><hr/></div>
-            </#if>
+          </li>
         </#list>
-        <div><hr/></div>
+        <li>
         <a href="<@o...@ofbizUrl>" class="buttontext">${uiLabelMap.OrderViewAllPromotions}</a>
+        </li>
+        <ul>
     </div>
 </div>
 </#if>