Author: apatel
Date: Fri May 29 19:18:04 2009
New Revision: 780078
URL:
http://svn.apache.org/viewvc?rev=780078&view=revLog:
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>