Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

35 wiersze
1.6 KiB

  1. <div class="row">
  2. <div class="col-sm-12">
  3. <div class="ibox float-e-margins">
  4. <div class="ibox-title">
  5. <h5>Invoices</h5>
  6. </div>
  7. <div class="ibox-content">
  8. <div class="table-responsive">
  9. <table class="table table-hover">
  10. <thead>
  11. <tr>
  12. <th>Billing Date</th>
  13. <th>Subscription Id</th>
  14. <th>Invoice Id</th>
  15. <th>Team Name</th>
  16. <th>Total</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <% for ( var i = 0; i < invoices.length; i++ ) { %>
  21. <tr data-invoice-id="<%= invoices[ i ].id %>">
  22. <td><%= moment( invoices[ i ].billing_date_dt ).format( 'D.M.YYYY' ) %></td>
  23. <td><%= invoices[ i ].braintree_subscription_id %></td>
  24. <td><%= invoices[ i ].billing_id %></td>
  25. <td><%= invoices[ i ].team_name %></td>
  26. <td><%= invoices[ i ].package_price %> EUR</td>
  27. </tr>
  28. <% } %>
  29. </tbody>
  30. </table>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </div>