Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <table class="table table-bordered table-striped table-hover table-condensed">
  2. <thead>
  3. <tr>
  4. <th data-sortable="true">Job Code</th>
  5. <th data-sortable="true">Percentage</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <% @chart_query.each do |item| %>
  10. <tr>
  11. <td><%= item.attributes['Job Code'] %></td>
  12. <td><%= item.attributes['Percentage'].round(2) %>%</td>
  13. </tr>
  14. <% end %>
  15. </tbody>
  16. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement