You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 line
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>