blob: 7af6fad8d1a8c37c24089501bb51aad13259e590 [file] [log] [blame]
<table class="table table-hover">
<thead>
<tr>
<th class="mysize-10" ></th>
<th class="mysize-5" style="cursor:pointer">Type</th>
<th class="mysize-15" style="cursor:pointer">Workflow</th>
<th class="mysize-10" style="cursor:pointer">Activity</th>
<th class="mysize-30" style="cursor:pointer">Description</th>
<th style="cursor:pointer">Timestamp</th>
</tr>
</thead>
<tbody>
{{#each}}
<tr {{bind-attr class="isSys:success"}}>
<td>
<div {{bind-attr class=":my-indicator feedback"}}></div>
<a href="" {{action 'createLog' this}}><span class="glyphicon glyphicon-chevron-down add-new"></span></a>
{{#if feedback}}
<a href="" {{action "editLog"}}><span class="glyphicon glyphicon-edit"></span></a>
<a href="" {{action 'removeLog' this}}><span class="glyphicon glyphicon-remove"></span></a>
{{/if}}
</td>
<td>{{activityType}}</td>
<td>
<div class="wf-code" {{bind-attr style="wfColor"}}"></div>
{{#if isEditing}}
{{view Ember.Select
content=wfStates2
optionValuePath="content.id"
optionLabelPath="content.name"
class="form-control dave"
value=wfState
action="updateLog"}}
{{!-- {{view Ember.Select content=wfStates class="form-control dave" value=wfS action="updateLog"}} --}}
{{else}}
{{wfStateFormat}}
{{/if}}
</td>
<td>
{{#if isEditing}}
{{input type="text" placeholder='add activity' value=activity class="form-control dave" action="updateLog"}}
{{else}}
{{activity}}
{{/if}}
</td>
<td>
{{#if isEditing}}
{{input type="text" placeholder='add activity description' value=activityDesc class="form-control dave" action="updateLog"}}
{{else}}
{{activityDesc}}
{{/if}}
</td>
<td>
{{#if isEditing}}
{{input type="text" value=newTimestamp class="form-control dave" action="updateLog"}}
{{else}}
{{format-time timestamp}}
{{/if}}
</td>
</tr>
{{/each}}
</tbody>
</table>