Sha256: f891132f2feb8120a18573bd401aa391c2fe302a4c995c148dd8ddaf82e7fe08
Contents?: true
Size: 963 Bytes
Versions: 14
Compression:
Stored size: 963 Bytes
Contents
<h1>Listing leads</h1> <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="3"></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', 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> <br> <%= link_to 'New Lead', new_lead_path %>
Version data entries
14 entries across 14 versions & 1 rubygems