mirror of
https://gitea.com/jonasfranz/staletea
synced 2025-04-19 15:47:59 +02:00
15 lines
330 B
Go HTML Template
15 lines
330 B
Go HTML Template
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<form method="post">
|
|
<ul>
|
|
{{range .repos}}
|
|
<li><input type="checkbox" {{if .Activated}}checked{{end}} name="{{.ID}}"> <label for="{{.ID}}">{{.Owner}}/{{.Name}}</label></li>
|
|
{{end}}
|
|
</ul>
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html> |