Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <th>Product</th>
  4. <th>Title</th>
  5. <th>Role</th>
  6. <th>Kind</th>
  7. <th>State</th>
  8. <th>Template</th>
  9. <th>AMI ID</th>
  10. <th>Last update</th>
  11. <th></th>
  12. </tr>
  13.  
  14. <% @cb_templates.each do |cb_template| %>
  15.  
  16. <tr>
  17. <th><%= cb_template.product ? cb_template.product.name : '' %></th>
  18. <td><%= cb_template.title %></td>
  19. <td><%= cb_template.role %></td>
  20. <td><%= @kind_options[cb_template.kind][0] %></td>
  21. <td><%= @state_options[cb_template.state][0] %></td>
  22. <td><%= cb_template.template_id %></td>
  23. <td><%= link_to cb_template.ami_id, @vdi_view_image_uri + cb_template.ami_id %></td>
  24. <td><%= cb_template.updated_at.strftime("%b %d, %H:%M") %></td>
  25. <td style="white-space: nowrap;">
  26. <%= link_to "Show", product %>
  27. <%= link_to "Edit", edit_product_path(cb_template)%>
  28. </td>
  29. </tr>
  30. < % end %>
  31. </table>
  32.  
  33. #app/assets/stylesheets/application.css.sass
  34. table
  35. tr
  36. th
  37. width: 150px
  38. overflow: hidden
  39. text:
  40. overflow: ellipsis
  41. white:
  42. space: no-wrap
  43.  
  44. <%= cb_template.product ? truncate(cb_template.product.name, length: 20) : '' %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement