Sha256: 39c75c14c2db85227da1053931e7f6a8d4ab7878471c1fea2ea714b077c35dc4

Contents?: true

Size: 963 Bytes

Versions: 3

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="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', 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

3 entries across 3 versions & 1 rubygems

Version Path
leads_to_highrise-0.2.16 app/views/leads/index.html.erb
leads_to_highrise-0.2.15 app/views/leads/index.html.erb
leads_to_highrise-0.2.14 app/views/leads/index.html.erb