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.

40 lines
1.4 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. <title>DHCP web-viewer</title>
  4. </head>
  5. <html>
  6. <body>
  7. <a href="/hosts">отчет по хостам в статическом адресном пространстве</a><br>
  8. <a href="/">отчет по занятым хостам в динамическом адресном пространстве</a>
  9. <h1>Добавление хостов</h1>
  10. <br /><br />
  11. <form action="/add_hosts" name="add_hosts" method="post">
  12. <input type="submit" value="Submit">
  13. <table border="1">
  14. <caption>Таблица аренды динамических адресов</caption>
  15. <tr>
  16. <th>Дата истечения</th>
  17. <th>IP адрес</th>
  18. <th>Mac адрес</th>
  19. <th>Имя хоста</th>
  20. <th>Новое имя</th>
  21. <th>№ сети</th>
  22. <th>Импортировать</th>
  23. </tr>
  24. %i = 0
  25. %for a in A:
  26. %i = i + 1
  27. <tr>
  28. <td>{{a[0]}}</td>
  29. <td>{{a[1]}}</td>
  30. <td>{{a[2]}}</td>
  31. <td>{{a[3]}}</td>
  32. <td><input type="text" pattern="[A-Za-z0-9]{4,}" name="hostname_{{i}}" size="12"></td>
  33. <td><input type="number" size="3" max="255" value="1" name="hostname_{{i}}"/></td>
  34. <td><input type="checkbox" name="hostname_{{i}}" value="{{a[2]}}" /></td>
  35. %end
  36. </tr>
  37. </table>
  38. </form>
  39. </body>
  40. </html>

Powered by TurnKey Linux.