I have the code below that for now is returning the status of ApproverOne, ApproverTwo and ApproverThree in text format:
<tr ng-repeat="ticket in requests">
<td><a href="{{ticket.Link}}">{{ticket.Id}}</a></td>
<td class="action{{ticket.ApproverOne}}">{{ticket.ApproverOne}}</td>
<td class="action{{ticket.ApproverTwo}}">{{ticket.ApproverTwo}}</td>
<td class="action{{ticket.ApproverThree}}">{{ticket.ApproverThree}}</td>
</tr>
The status are: Approved, Rejected, In progress and No Action. I want to show icons representing these status instead of plain text. Anyone there who can think of a solution? Thanks!