Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

43 Zeilen
940B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. {{ css }}
  7. </style>
  8. </head>
  9. <body>
  10. <table class="table-search">
  11. <thead>
  12. <tr>
  13. <th>Catégorie</th>
  14. <th>Thématique</th>
  15. <th>Contribution</th>
  16. <th>Lieu</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for result in resultArray %}
  21. <tr>
  22. <td>
  23. {{ result }}
  24. </td>
  25. <td>
  26. {{ result.thematic }}
  27. </td>
  28. <td>
  29. {{ result.subthematic }}
  30. </td>
  31. <td>
  32. {% if result.individualData is not empty %}
  33. {{ result.individualData.territory }}
  34. {% elseif result.collectifData is not empty %}
  35. {{ result.collectifData.territory }}
  36. {% endif %}
  37. </td>
  38. </tr>
  39. {% endfor %}
  40. </tbody>
  41. </table>
  42. </body>
  43. </html>