|
|
- <!DOCTYPE html>
- <head>
- <title>DHCP web-viewer</title>
- </head>
- <html>
- <body>
- <a href="/hosts">отчет по хостам в статическом адресном пространстве</a><br>
- <a href="/add_hosts">Добавление хостов</a>
- <h1>Динамические адреса</h1>
- <br /><br />
- <form action="/" name="reboot_hosts" method="post">
- <input type="submit" value="Submit">
- <table border="1">
- <caption>Таблица аренды динамических адресов</caption>
- <tr>
- <th>Дата истечения</th>
- <th>IP адрес</th>
- <th>Mac адрес</th>
- <th>Имя хоста</th>
- <th>Перезагрузить</th>
- </tr>
- %i = 0
- %for a in A:
- %i = i + 1
- <tr>
- <td>{{a[0]}}</td>
- <td>{{a[1]}}</td>
- <td>{{a[2]}}</td>
- <td>{{a[3]}}</td>
- <td><input type="checkbox" name="reboot_{{i}}" value="{{a[1]}}" /></td>
- %end
- </tr>
- </table>
- </form>
- </body>
- </html>
|