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.

25 lines
655 B

7 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>My Bottle Home</title>
  5. <link rel="stylesheet" type="text/css" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
  6. </head>
  7. <body>
  8. <h1>Initial page</h1>
  9. <br /><br />
  10. <table border="1">
  11. <caption>Таблица аренды адресов</caption>
  12. <tr>
  13. <th>Дата истечения</th>
  14. <th>IP адрес</th>
  15. <th>Mac адрес</th>
  16. <th>Имя хоста</th>
  17. </tr>
  18. %for a in A:
  19. <tr>
  20. %for i in a:
  21. <td>{{i}}</td>
  22. %end
  23. %end
  24. </body>
  25. </html>

Powered by TurnKey Linux.