Sha256: 1ff6f2fec51a5ca914b256b19d0e4d653d8dc117536955f1476b836a8a189a30

Contents?: true

Size: 440 Bytes

Versions: 1

Compression:

Stored size: 440 Bytes

Contents

%h1 User Groups

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

  - @user_groups.each do |user_group|
    %tr
      %td= user_group.name
      %td= user_group.description
      %td= link_to 'Show', user_group
      %td= link_to 'Edit', edit_user_group_path(user_group)
      %td= link_to 'Destroy', user_group, method: :delete, data: { confirm: 'Are you sure?' }
%br

= link_to 'New User group', new_user_group_path

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alberich-0.2.0 test/dummy/app/views/user_groups/index.html.haml