Sha256: ed582b2ea8dd36ec11abb5f4c7c378aaec93d5fcd7ba003337113f4994603946

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

%h1 Listing Applications

%table
  %tr
    %th Name
    %th Key
    %th Description
    %th 
    %th 
    %th 

  = content_tag_for(:tr, @applications) do |application| 
    %td 
      = application.name 
    %td 
      = application.key 
    %td 
      = application.description 
    %td 
      = link_to 'Show', application 
    %td 
      = link_to 'Edit', edit_application_path(application) 
    %td 
      = link_to 'Destroy', application, confirm: 'Are you sure?', method: :delete 

%br

= link_to 'New Application', new_application_path

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eventbus-0.0.20 admin/app/views/applications/index.html.haml