Advertisement
Guest User

Untitled

a guest
May 24th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <body>
  4. <table border="1">
  5. <tr>
  6. <th>Realisateur</th>
  7. <th>Titres</th>
  8. <th>Modules</th>
  9. </tr>
  10.  
  11. <xsl:for-each select="projets/projet">
  12. <tr>
  13. <td>
  14. <xsl:value-of select="realisateur"/>
  15. </td>
  16. <td>
  17. <xsl:value-of select="titre"/>
  18. </td>
  19. <td>
  20.  
  21. <xsl:for-each select="modules">
  22. <ul>
  23. <xsl:for-each select="module">
  24. <li>
  25. <xsl:value-of select="."/>
  26. </li>
  27. </xsl:for-each>
  28. </ul>
  29. </xsl:for-each>
  30.  
  31. </td>
  32. </tr>
  33. </xsl:for-each>
  34.  
  35. </table>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement