summaryrefslogtreecommitdiffstats
path: root/templates/admin/queue.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/queue.tmpl')
-rw-r--r--templates/admin/queue.tmpl36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/admin/queue.tmpl b/templates/admin/queue.tmpl
new file mode 100644
index 0000000..1be35cf
--- /dev/null
+++ b/templates/admin/queue.tmpl
@@ -0,0 +1,36 @@
+{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin monitor")}}
+<div class="admin-setting-content">
+ <h4 class="ui top attached header">
+ {{ctx.Locale.Tr "admin.monitor.queues"}}
+ </h4>
+ <div class="ui attached table segment">
+ <table class="ui very basic striped table unstackable">
+ <thead>
+ <tr>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.name"}}</th>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.type"}}</th>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.exemplar"}}</th>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.numberworkers"}}</th>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.activeworkers"}}</th>
+ <th>{{ctx.Locale.Tr "admin.monitor.queue.numberinqueue"}}</th>
+ <th></th>
+ </tr>
+ </thead>
+ <tbody>
+ {{range $qid, $q := .Queues}}
+ <tr>
+ <td>{{$q.GetName}}</td>
+ <td>{{$q.GetType}}</td>
+ <td>{{$q.GetItemTypeName}}</td>
+ <td>{{$q.GetWorkerNumber}}</td>
+ <td>{{$q.GetWorkerActiveNumber}}</td>
+ <td>{{$sum := $q.GetQueueItemNumber}}{{if lt $sum 0}}-{{else}}{{$sum}}{{end}}</td>
+ <td><a href="{{$.Link}}/{{$qid}}" class="button">{{ctx.Locale.Tr "admin.monitor.queue.review_add"}}</a></td>
+ </tr>
+ {{end}}
+ </tbody>
+ </table>
+ </div>
+</div>
+{{template "admin/layout_footer" .}}
+