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.
 
 

27 lines
696 B

<!DOCTYPE html>
<head>
<title>DHCP web-viewer</title>
</head>
<html>
<body>
<a href="/hosts/">отчет по занятым хостам в свободном адресном пространстве</a>
<h1>Leases report</h1>
<br /><br />
<table border="1">
<caption>Таблица аренды адресов</caption>
<tr>
<th>Дата истечения</th>
<th>IP адрес</th>
<th>Mac адрес</th>
<th>Имя хоста</th>
</tr>
%for a in A:
<tr>
%for i in a:
<td>{{i}}</td>
%end
%end
</tr>
</table>
</body>
</html>

Powered by TurnKey Linux.