Sha256: 1e017539c8e5c1ffa58e5fce778724ec0b6d29ef0ea53225940c30401bbc2211

Contents?: true

Size: 617 Bytes

Versions: 1

Compression:

Stored size: 617 Bytes

Contents

.row
  = render "header"

.row
  table
    thead
      th.col-width-tiny
      th.col-width-tiny ID
      th.col-width-medium User
      th.col-width-small Login
      th Email
      th Telephone #
      th.col-width-date-time Added
      th.col-width-tiny Approved

    tbody
      - @users.each do |user|
        = content_tag_for(:tr, user) do
          td= link_to "Edit", edit_admin_user_path(user) if policy(user).update?
          td= user.id
          td= user.to_s
          td= user.username
          td= user.email
          td= user.telephone
          td= l user.created_at
          td= user.approved?

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta4 app/views/renalware/admin/users/index.html.slim