You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2009/06/29 10:31:54 UTC

svn commit: r789256 - /ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl

Author: mor
Date: Mon Jun 29 08:31:54 2009
New Revision: 789256

URL: http://svn.apache.org/viewvc?rev=789256&view=rev
Log:
Minor fix to the portlet on order manager main page.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl?rev=789256&r1=789255&r2=789256&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/order/OrderListByDate.ftl Mon Jun 29 08:31:54 2009
@@ -32,6 +32,7 @@
     <br class="clear"/>
   </div>
   <div class="screenlet-body">
+    <#if orderHeaderList?has_content>
     <table class="basic-table hover-bar" cellspacing='0'>
       <tr class="header-row">
         <td width="20%">${uiLabelMap.OrderOrder} #</td>
@@ -67,9 +68,9 @@
           <td>${orderHeader.getRelatedOneCache("StatusItem").get("description",locale)}</td>
         </tr>
       </#list>
-      <#if !orderHeaderList?has_content>
-        <tr><td colspan="9"><h3>${uiLabelMap.OrderNoOrderFound}</h3></td></tr>
-      </#if>
     </table>
+    <#else>
+      <h3>${uiLabelMap.OrderNoOrderFound}</h3>
+    </#if>
   </div>
 </div>
\ No newline at end of file