brie-aurore/Brie/brie/templates/search/ip.html
2014-02-18 11:44:14 +01:00

23 lines
822 B
HTML

<html
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<head>
<link type="text/css" rel="Stylesheet" href="/css/common.css" />
<link type="text/css" rel="Stylesheet" href="/css/rooms.css" />
<xi:include href="common-css-header.html" />
</head>
<body>
<xi:include href="navbar.html" />
<table class="table table-hover">
<tr>
<th>membre</th>
<th>machine name</th>
</tr>
<tr py:for="member, machine in results">
<td><a href="/show/member/${residence}/${member.uid.first()}">${member.cn.first()}</a></td>
<td>${machine.dlzHostName.first()} (${machine.dlzData.first()})</td>
</tr>
</table>
</body>
</html>