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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

apatel-2
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="<@ofbizUrl>showPromotionDetails?productPromoId=${productPromo.productPromoId}</@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="<@ofbizUrl>showAllPromotions</@ofbizUrl>" class="buttontext">${uiLabelMap.OrderViewAllPromotions}</a>
+        </li>
+        <ul>
     </div>
 </div>
 </#if>