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

<!DOCTYPE html>
<head>
<title>DHCP web-viewer</title>
</head>
<html>
<body>
<a href="/hosts">отчет по хостам в статическом адресном пространстве</a><br>
<a href="/">отчет по занятым хостам в динамическом адресном пространстве</a>
<h1>Добавление хостов</h1>
<br /><br />
<form action="/add_hosts" name="add_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>
<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="text" pattern="[A-Za-z0-9]{4,}" name="hostname_{{i}}" size="12"></td>
<td><input type="number" size="3" max="255" value="1" name="hostname_{{i}}"/></td>
<td><input type="checkbox" name="hostname_{{i}}" value="{{a[2]}}" /></td>
%end
</tr>
</table>
</form>
</body>
</html>

Powered by TurnKey Linux.