tracker/templates/index.html

59 lines
1.6 KiB
HTML
Raw Normal View History

2024-01-17 17:06:26 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2024-01-17 17:15:46 +00:00
<title>MatterLinux | Packages</title>
2024-01-17 17:06:26 +00:00
<meta charset="UTF-8">
<meta name="viewport" content="width=1200">
<link href="/style.css" rel="stylesheet">
</head>
<body>
{{template "parts/bar" .}}
<main>
<div class="search">
<form action="/" method="GET">
{{if .query}}
<input placeholder="Hit enter to search" type="text" name="q" value="{{.query}}">
2024-01-17 17:06:26 +00:00
{{else}}
<input placeholder="Hit enter to search" type="text" name="q" autofocus>
2024-01-17 17:06:26 +00:00
{{end}}
<select name="pools">
<option value="">Select pool</option>
{{range .pools}}
<option value="{{.Name}}">{{.Display}}</option>
2024-01-17 17:06:26 +00:00
{{end}}
</select>
</form>
<div class="status">
<p>Listing {{len .list}} packages</p>
2024-01-17 17:06:26 +00:00
<p>Last updated: {{.last}}</p>
</div>
</div>
<table class="pkgs">
<tr>
<th>Name</th>
<th>Pool</th>
2024-01-17 17:06:26 +00:00
<th>Version</th>
<th>Size</th>
2024-01-17 17:54:37 +00:00
<th>Description</th>
<th>Dependencies</th>
2024-01-17 17:06:26 +00:00
</tr>
{{range .list}}
2024-01-17 17:06:26 +00:00
<tr>
<td><a href="{{.URL}}">{{.Name}}</a></td>
{{if .Pool}}
<td>{{.Pool.Display}}</td>
{{else}}
<td></td>
{{end}}
<td>{{.Version }}</td>
2024-01-17 17:06:26 +00:00
<td>{{.Size}}</td>
<td>{{.Desc}}</td>
<td>{{.DependsToStr}}</td>
2024-01-17 17:06:26 +00:00
</tr>
{{end}}
</table>
</main>
</body>
</html>