esxlib/web/templates/zones.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2023-09-02 17:53:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>ESX: Dashboard</title>
{{ template "core_head" . }}
</head>
<body>
{{template "core_sidebar" . }}
<!-- CONTENT -->
<div id="content" data-uk-height-viewport="expand: true">
<div class="uk-container uk-container-expand">
<table class="uk-table uk-table-justify uk-table-divider">
<thead>
<tr>
<th>Zone Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{{ range .Content.Resp.Zones }}
<tr>
<td><a href="/ui/zone/{{ .Id }}/">{{ .Name }}</a></td>
<td>{{ .Description }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ template "core_footer" . }}
</div>
</div>
{{template "core_tail" . }}
</body>
</html>