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.

41 lines
1.5 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. <title>DHCP web-viewer</title>
  4. </head>
  5. <html>
  6. <body>
  7. <a href="/">отчет по занятым хостам в динамическом адресном пространстве</a>
  8. <h1>Статические адреса</h1>
  9. <br /><br />
  10. <form action="/hosts" name="add_hosts" method="post">
  11. <input type="submit" value="Submit">
  12. <table border="1">
  13. <caption>Таблица аренды статических адресов </caption>
  14. <tr>
  15. <th>IP адрес</th>
  16. <th>Имя хоста</th>
  17. <th>Mac адрес</th>
  18. <th>арендован</th>
  19. <th>Освободить <br> адрес</th>
  20. <th>Удалить из <br> импорта</th>
  21. </tr>
  22. %for a in A:
  23. <tr>
  24. <td><a target="_blank" href="http://{{a[0]}}">{{a[0]}}</a></td>
  25. <td>{{a[1]}}</td>
  26. <td>{{a[2]}}</td>
  27. <td align="center">
  28. %if a[3]== '-':
  29. <font size="5" color="red" face="Arial">-</font>
  30. %elif a[3] == '+':
  31. <font size="5" color="green" face="Arial">+</font>
  32. %end
  33. </td>
  34. <td align="center"><input type="checkbox" name="remove_host" value={{a[2]}} /></td>
  35. <td align="center"><input type="checkbox" name="remove_import" value={{a[2]}} /></td>
  36. %end
  37. </tr>
  38. %end
  39. </table>
  40. </body>
  41. </html>

Powered by TurnKey Linux.