Sha256: e1fd63990cd1c58739b17254d669c7b0cd4f8b2111cbec3d0749cadd96606609
Contents?: true
Size: 986 Bytes
Versions: 4
Compression:
Stored size: 986 Bytes
Contents
<%= link_to 'New Lead', new_lead_path %> <br> <table> <thead> <tr> <th>Name</th> <th>Last name</th> <th>Email</th> <th>Company</th> <th>Job title</th> <th>Phone</th> <th>Website</th> <th colspan="4"></th> </tr> </thead> <tbody> <% @leads.each do |lead| %> <tr> <td><%= lead.name %></td> <td><%= lead.last_name %></td> <td><%= lead.email %></td> <td><%= lead.company %></td> <td><%= lead.job_title %></td> <td><%= lead.phone %></td> <td><%= lead.website %></td> <td><%= link_to 'Show', LeadsToHighrise::lead %></td> <td><%= link_to 'Edit', edit_lead_path(lead) %></td> <td><%= link_to 'Destroy', lead, method: :delete, data: { confirm: 'Are you sure?' } %></td> <td><%= link_to 'Send To Highrise', to_highrise_path(lead) if user_signed_in? %></td> </tr> <% end %> </tbody> </table>
Version data entries
4 entries across 4 versions & 1 rubygems