Skip to content

Commit

Permalink
#188 show the case severity in my/waiting tasks lists
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed May 18, 2017
1 parent a3bcf57 commit f39e608
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ui/app/views/partials/index-mytasks.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<psearch control="list"></psearch>

<table class="table table-striped table-hover valigned">
<table class="table table-striped table-hover">
<thead>
<tr>
<th class="text-center" style="width: 60px;">Severity</th>
<th>Task</th>
<th width="250px;">Date</th>
</tr>
Expand All @@ -13,6 +14,9 @@
ng-repeat="value in list.values"
ng-class="{'warning': (value.flag == true)}"
ng-click="openEntity(value)">
<td class="text-center">
<severity active="false" value="value.case.severity"></severity>
</td>
<td>
<div>
<span ng-if="value.flag"><i class="text-primary glyphicon glyphicon-flag"></i></span>
Expand Down
6 changes: 5 additions & 1 deletion ui/app/views/partials/index-waitingtasks.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<psearch control="list"></psearch>

<table class="table table-striped table-hover valigned">
<table class="table table-striped table-hover">
<thead>
<tr>
<th class="text-center" style="width: 60px;">Severity</th>
<th>Task</th>
<th width="100px;">Action</th>
</tr>
Expand All @@ -11,6 +12,9 @@
<tbody>
<tr class="task-row"
ng-repeat="value in list.values">
<td class="text-center">
<severity active="false" value="value.case.severity"></severity>
</td>
<td>
<div>{{value.title}}</div>
<div>
Expand Down

0 comments on commit f39e608

Please sign in to comment.