Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
550B

  1. $def with (nav, project, tasks)
  2. <head>
  3. <title>Beelance2</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="static/stylesheet.css">
  6. <link rel="shortcut icon" type="image/png" href="static/honeybee.png"/>
  7. </head>
  8. <body>
  9. $:nav
  10. <h1>Project View</h1>
  11. $if len(project):
  12. <h2>Title: $project[3]</h2>
  13. <p>Description: $project[4]</p>
  14. <p>Status: $project[5]</p>
  15. <ul>
  16. $for task in tasks:
  17. <li id="$task[0]">$task</li>
  18. </ul>
  19. </body>