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.

37 lines
1.0 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. <title>DHCP web-viewer</title>
  4. </head>
  5. <html>
  6. <body>
  7. <a href="/hosts/">отчет по занятым хостам в фиксированном адресном пространстве</a>
  8. <h1>Leases report</h1>
  9. <br /><br />
  10. <table border="1">
  11. <caption>Таблица аренды адресов</caption>
  12. <tr>
  13. <th>IP адрес</th>
  14. <th>Имя хоста</th>
  15. <th>Mac адрес</th>
  16. <th>адрес арендован</th>
  17. </tr>
  18. %for a in A:
  19. <tr>
  20. %for i in a:
  21. <td>
  22. %if i == '-':
  23. <font size="5" color="red" face="Arial">-</font>
  24. %end
  25. %if i == '+':
  26. <font size="5" color="green" face="Arial">+</font>
  27. %end
  28. %if not i == '+' and not i == '-':
  29. {{i}}
  30. %end
  31. </td>
  32. %end
  33. </tr>
  34. %end
  35. </table>
  36. </body>
  37. </html>

Powered by TurnKey Linux.