Guest User

Fluid

a guest
Nov 28th, 2011
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.29 KB | None | 0 0
  1. <ul>
  2.     <f:for each="{departements}" as="departement">
  3.         <li>
  4.             {departement.title}
  5.             <f:if condition="{departement.employes}"
  6.                 <ul>
  7.                     <f:for each="{departement.employes}" as="employe">
  8.                         <li>{employe.title}</li>
  9.                     </f:for>
  10.                 </ul>
  11.             </f:if>
  12.         </li>
  13.     </f:for>
  14. </ul>
  15.  
Advertisement
Add Comment
Please, Sign In to add comment