Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <nav>
  2. Filter by status: {{one-way-select currentStatus options=statuses update=(action (mut currentStatus))}}
  3.  
  4. <span class="pull-right">
  5. Select currency: {{one-way-select currentCurrency options=currencies update=(action (mut currentCurrency))}}
  6. </span>
  7. </nav>
  8. <ul class="row invoices-list">
  9. {{#each invoices as |invoice|}}
  10. <li class="col-md-6 status-{{invoice.status}}">
  11. Client: <strong>{{invoice.client}}</strong> <br>
  12. Amount: <strong>{{invoice.value}}</strong> <br>
  13. Status: {{invoice.status}}
  14. </li>
  15. {{/each}}
  16. </ul>
  17.  
  18. <h3>Reports</h3>
  19. <ul>
  20. <li>
  21. Amount of draft invoices: #
  22. </li>
  23. <li>
  24. Amount pending payment: #
  25. </li>
  26. <li>
  27. Amount of total payment sent: #
  28. </li>
  29. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement