Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. extends layout
  2. block content
  3. .w3-container
  4. h1.w3-blue Agenda de Eventos
  5. table.w3-table-all
  6. tr
  7. th Data
  8. th Horário
  9. th Tipo
  10. th Designação
  11. th Local
  12. th Informações
  13. each e in eventos
  14. tr
  15. td= e.data
  16.  
  17. if e.horario
  18. td= e.horario
  19. else
  20. td ----
  21.  
  22. td= e.tipo
  23.  
  24. if e.designacao
  25. td= e.designacao
  26. else
  27. td ----
  28.  
  29. if e.local
  30. td= e.local
  31. else
  32. td ----
  33.  
  34. if e.informacoes
  35. td= e.informacoes
  36. else
  37. td ----
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement