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
731 B

  1. <!DOCTYPE html>
  2. <head>
  3. <title>DHCP web-viewer</title>
  4. </head>
  5. <html>
  6. <body>
  7. <h1>Таблица импорта обновлена.</h1>
  8. Если устройства не перезагружены автоматически, это необходимо сделать вручную.
  9. <table border="1">
  10. <caption>Добавленные хосты</caption>
  11. <tr>
  12. <th>IP адрес</th>
  13. <th>Mac адрес</th>
  14. <th>Имя хоста</th>
  15. </tr>
  16. %for a in A:
  17. <tr>
  18. <td>{{a[0]}}</td>
  19. <td>{{a[1]}}</td>
  20. <td>{{a[2]}}</td>
  21. %end
  22. </tr>
  23. </table>
  24. <a target="_blank" href="/">Назад</a>
  25. </body>
  26. </html>

Powered by TurnKey Linux.