Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#69 add job name in queue list #74

Merged
merged 4 commits into from
Dec 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/server/views/dashboard/templates/queueJobsByState.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,14 @@
</div>

<a role="button" data-toggle="collapse" href="#collapse{{encodeIdAttr this.id}}">
<h4 class="header-collapse">{{this.id }}</h4>
<h4 class="header-collapse">
<span class="label label-default">{{ this.id }}</span>
{{#if this.data.name}}
<span style="margin-left: 8px">{{ this.data.name }}</span>
{{else if this.name}}
<span style="margin-left: 8px">{{ this.name }}</span>
{{/if}}
</h4>
</a>
<div id="collapse{{encodeIdAttr this.id}}" class="collapse">
{{> dashboard/jobDetails this basePath=../basePath displayJobInline=true queueName=../queueName queueHost=../queueHost jobState=../state }}
Expand Down