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.

24 lines
543 B

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

Powered by TurnKey Linux.