{{template "head" "Devices"}}
<h1>DRM database devices</h1>
<p><a href="/">Back to index</a></p>
<table>
<thead>
<tr>
<th>ID</th>
<th>Bus type</th>
<th>Vendor</th>
<th>Name</th>
<th>Driver</th>
</tr>
</thead>
<tbody>
{{range .Devices}}
<tr>
<td class="pre">
<a href="/devices/{{.Key}}">{{.BusID}}</a>
</td>
<td>{{.BusType}}</td>
{{if .Vendor}}
<td>{{.Vendor}}</td>
{{else}}
<td class="status-unknown">?</td>
{{end}}
{{if .Name}}
<td>{{.Name}}</td>
{{else}}
<td class="status-unknown">?</td>
{{end}}
<td class="pre">
<a href="?driver={{.Driver}}" title="Only show {{.Driver}} devices">{{.Driver}}</a>
</td>
</tr>
{{end}}
</tbody>
</table>