2019-08-27 17:05:17 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= 'Groupes'
|
|
|
|
.container
|
|
|
|
.page-header
|
|
|
|
%h1 Listing user_groups
|
|
|
|
|
|
|
|
%table.table-responsive.table-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Createat
|
|
|
|
%th Visibility
|
2019-08-27 17:08:52 +02:00
|
|
|
%th Creator ID
|
2019-08-27 17:33:45 +02:00
|
|
|
%th Statuses count
|
2019-08-27 17:05:17 +02:00
|
|
|
%th
|
|
|
|
%th
|
|
|
|
%th
|
|
|
|
|
|
|
|
%tbody
|
|
|
|
- @user_groups.each do |user_group|
|
|
|
|
%tr
|
|
|
|
%td= user_group.name
|
2019-08-27 17:08:52 +02:00
|
|
|
%td= user_group.created_at
|
2019-08-27 17:05:17 +02:00
|
|
|
%td= user_group.visibility
|
2019-08-27 17:08:52 +02:00
|
|
|
%td= user_group.account_id
|
2019-08-27 17:33:45 +02:00
|
|
|
%td= "0"
|
2019-08-27 17:05:17 +02:00
|
|
|
%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
|
|
|
|
|
|
|
|
.text-btn
|
|
|
|
= link_to 'New User group', new_user_group_path
|