Guest User

Untitled

a guest
Jan 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <div class="parent">
  2. <div class="child" ng-repeat="item in c.stage track by $index">
  3. <div class="at-work-process position-relative overflow-hidden text-center">
  4. <div class="at-work-process-text">
  5. <span class="at-work-process-number">{{$index+1}}</span>
  6. <span class="at-work-process-number-text">{{item.workflow_stage}}</span>
  7. <div class="at-separator-thick"></div>
  8. </div>
  9. <div ng-click="showDetails(item)" class="at-work-process-details">
  10. <div ng-if="!c.allComplete">
  11. <i class="material-icons" style="color:#F44336;">error</i>
  12. <span ng-if="c.incompleteCounter > 1">Incomplete <br/> {{c.incompleteCounter}} Tasks Require Your Attention</span>
  13. <span ng-if="c.incompleteCounter == 1">Incomplete <br/> {{c.incompleteCounter}} Task Require Your Attention</span>
  14. </div>
  15. <div ng-if="c.allComplete" >
  16. <i class="material-icons" style="color:#4CAF50;">check_circle</i>
  17. <span>Complete</span>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23.  
  24. <div ng-show="tasksDiv" class="text-center tasksDiv">
  25. <h3>{{active_workflow}} Tasks:</h3>
  26. <ul style="list-style:none; padding-left:0; display:inline-block">
  27. <li ng-repeat="tasks in active_tasks track by $index" style="display:flex; align-items:center;">
  28. <i class="material-icons" style={{tasks.style}}>{{tasks.icon}}</i><a href="{{tasks.url}}" target="_blank">{{tasks.short_description}}</a>
  29. </li>
  30. </ul>
  31. </div>
Add Comment
Please, Sign In to add comment