Sha256: 139487a269c49ddd92dddc7818c94ff590d6bfc61c06b681844bb8652cdbf3d3

Contents?: true

Size: 843 Bytes

Versions: 1

Compression:

Stored size: 843 Bytes

Contents

h1 Listing people

table
  thead
    tr
      th First name
      th Last name
      th Email
      th Title
      th Twitter
      th Www
      th Context
      th Phone
      th Fax
      th Mobile
      th
      th
      th

  tbody
    - @people.each do |person|
      tr
        td = person.first_name
        td = person.last_name
        td = person.email
        td = person.title
        td = person.twitter
        td = person.www
        td = person.context
        td = person.phone
        td = person.fax
        td = person.mobile
        td = link_to 'Show', [customer_vault, person]
        td = link_to 'Edit', customer_vault.edit_person_path(person)
        td = link_to 'Destroy', [customer_vault, person], data: {:confirm => 'Are you sure?'}, :method => :delete

br

= link_to 'New Person', customer_vault.new_person_path

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
customer_vault-0.0.1 app/views/customer_vault/people/index.html.slim