Skip to content

Commit

Permalink
UI for batch task manipulation #154
Browse files Browse the repository at this point in the history
  • Loading branch information
Bo Peng committed Dec 6, 2018
1 parent 77aae26 commit 8191c3e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/sos_notebook/kernel.js
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,10 @@ define([
<span>Index</span></br>
<pre>#<span id="workflow_index_${cell_id}">${info.index}</span></pre>
</td>
<td class="workflow_task_status">
<span id="task_${cell_id}">Tasks</span></br>
<pre><i class="fa fa-fw fa-refresh"></i><i class="fa fa-fw fa-stop"></i><i class="fa fa-fw fa-remove"></i></pre>
</td>
<td class="workflow_status">
<span id="status_text_${cell_id}">${info.status}</span></br>
<pre><i class="fa fa-fw fa-clock-o"></i><time id="status_duration_${cell_id}" class="${info.status}" datetime="${info.start_time}">${timer_text}</time></pre>
Expand Down Expand Up @@ -1977,12 +1981,19 @@ td.task_icon {
font-size: 0.75em;
}
td.task_status,
td.task_status
{
width: 15em;
text-align: left;
}
td.workflow_task_status
{
width: 10em;
text-align: left;
}
table.workflow_table span {
text-transform: uppercase;
font-family: monospace;
Expand Down

0 comments on commit 8191c3e

Please sign in to comment.