Sha256: 9db7234aa6405ef45219d5b8287fb5083ad8368954c9f188e36bb53e73110e4e

Contents?: true

Size: 638 Bytes

Versions: 4

Compression:

Stored size: 638 Bytes

Contents

h1 Listing corporations

table
  thead
    tr
      th Name
      th Email
      th Phone
      th Fax
      th
      th
      th

  tbody
    - @corporations.each do |corporation|
      tr
        td = corporation.name
        td = corporation.email
        td = corporation.phone
        td = corporation.fax
        td = link_to 'Show', [customer_vault, corporation]
        td = link_to 'Edit', customer_vault.edit_corporation_path(corporation)
        td = link_to 'Destroy', [customer_vault, corporation], data: {:confirm => 'Are you sure?'}, :method => :delete

br

= link_to 'New Corporation', customer_vault.new_corporation_path

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
customer_vault-0.0.4 app/views/customer_vault/corporations/index.html.slim
customer_vault-0.0.3 app/views/customer_vault/corporations/index.html.slim
customer_vault-0.0.2 app/views/customer_vault/corporations/index.html.slim
customer_vault-0.0.1 app/views/customer_vault/corporations/index.html.slim