2022-03-30 21:06:55 +05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<title>gron</title>
|
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<div class="dropdown">
|
|
|
|
<button class="dropbtn">☰ Menu</button>
|
|
|
|
<div class="dropdown-content">
|
|
|
|
<a href="/reloadJobs">⟳ Reload jobs</a>
|
|
|
|
<a>
|
|
|
|
<hr>
|
|
|
|
</a>
|
|
|
|
<a href="/shutdown">⏻ Shutdown</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-21 20:12:41 +05:00
|
|
|
{{range .Categories}}
|
|
|
|
<h2>{{if eq . ""}}Other jobs{{else}}{{.}}{{end}}</h2>
|
2022-03-30 21:06:55 +05:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Cron</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>Start time</th>
|
|
|
|
<th>Finish time</th>
|
|
|
|
<th>Duration</th>
|
|
|
|
<th>Next launch</th>
|
|
|
|
<th>Details</th>
|
|
|
|
</tr>
|
2022-10-21 20:12:41 +05:00
|
|
|
{{range (index $.Jobs .)}}
|
2022-03-30 21:06:55 +05:00
|
|
|
<tr>
|
|
|
|
<td class="no-padding">
|
|
|
|
<form action="/start" method="get" id="form-{{.Name}}"></form>
|
|
|
|
<button{{if gt .CurrentRunningCount 0}} class="runningbg" {{else}}{{if .LastError}} class="errorbg" {{end}}{{end}} type="submit" form="form-{{.Name}}" name="jobName" value="{{.Name}}" {{if gt .CurrentRunningCount 0}} disabled{{end}}>{{.Name}}</button>
|
|
|
|
</td>
|
|
|
|
<td class="smaller">{{.JobConfig.Description}}</td>
|
|
|
|
<td class="nowrap" align="right">
|
|
|
|
<pre>{{.JobConfig.Cron}}</pre>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap">{{if eq .Status 0}}⯀ inactive{{end}}{{if eq .Status 1}}<span class="green">⯈ running</span>{{end}}{{if eq .Status 2}}<span class="red">⯁ error</span>{{end}}{{if eq .Status 3}}<span class="orange">⟳ restarting</span>{{end}}</td>
|
|
|
|
<td>{{.LastStartTime}}</td>
|
|
|
|
<td>{{.LastEndTime}}</td>
|
|
|
|
<td align="right">{{.LastExecutionDuration}}</td>
|
|
|
|
<td>{{.NextLaunch}}</td>
|
|
|
|
<td class="centered"><a href="/details?jobName={{.Name}}">open</a></td>
|
|
|
|
</tr>{{end}}
|
2022-10-21 20:12:41 +05:00
|
|
|
</table>{{end}}
|
2022-03-30 21:06:55 +05:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|