123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {{template "base/head" .}}
- <div class="admin monitor">
- <div class="ui container">
- <div class="ui grid">
- {{template "admin/navbar" .}}
- <div class="twelve wide column content">
- {{template "base/alert" .}}
- <h4 class="ui top attached header">
- Cron Tasks 💻
- </h4>
- <div class="ui unstackable attached table segment">
- <table class="ui unstackable very basic striped table">
- <thead>
- <tr>
- <th>Name</th>
- <th>Schedule</th>
- <th>Next Time</th>
- <th>Previous Time</th>
- <th>Execute Times</th>
- </tr>
- </thead>
- <tbody>
- {{range .Entries}}
- <tr>
- <td>{{.Description}}</td>
- <td><b>{{.Spec}}</b></td>
- <td>{{DateFmtLong .Next}}</td>
- <td>{{if gt .Prev.Year 1 }}{{DateFmtLong .Prev}}{{else}}N/A{{end}}</td>
- <td><b>{{.ExecTimes}}</b></td>
- </tr>
- {{end}}
- </tbody>
- </table>
- </div>
- <h4 class="ui top attached header">
- Running Processes 🏃
- </h4>
- <div class="ui unstackable attached table segment">
- <table class="ui unstackable very basic striped table">
- <thead>
- <tr>
- <th>PID</th>
- <th>Description</th>
- <th>Start Time</th>
- <th>Execution Time</th>
- </tr>
- </thead>
- <tbody>
- {{range .Processes}}
- <tr>
- <td>{{.PID}}</td>
- <td>{{.Description}}</td>
- <td>{{DateFmtLong .Start}}</td>
- <td>{{TimeSince .Start $.Lang}}</td>
- </tr>
- {{end}}
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- {{template "base/footer" .}}
|