Sha256: b086dacc5bf778342b5203e6db21deec0977d4729aa57a0e18ed4717ccdef4a9

Contents?: true

Size: 1.08 KB

Versions: 15

Compression:

Stored size: 1.08 KB

Contents

%h1 Users

= render_region :top 

%table#users.index{:cellspacing=>"0", :border=>"0", :cellpadding=>"0"}
  %thead
    %tr
      - render_region :thead do |thead|
        - thead.title_header do
          %th.user Name / Login
        - thead.roles_header do
          %th.roles Roles
        - thead.modify_header do
          %th.modify Modify
  %tbody
    - @users.each do |user|
      %tr.node.level-1
        - render_region :tbody do |tbody|
          - tbody.title_cell do
            %td.user
              = link_to user.name, edit_admin_user_url(user)
              %small.login= h user.login
          - tbody.roles_cell do
            %td.roles= roles(user)
          - tbody.modify_cell do
            %td.remove
              - if user == current_user
                = image('remove-disabled', :alt => 'Remove')
              - else
                = link_to(image('remove', :alt => 'Remove User'), remove_admin_user_url(user)) 

- render_region :bottom do |bottom|
  - bottom.new_button do
    %p
      = link_to image('new-user', :alt => 'New User'), new_admin_user_url, :title => "New User"

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
radiantcms-couchrest_model-0.2.4 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.2.2 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.2.1 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.2 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.1.9 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.1.8 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.1.7 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.1.6 app/views/admin/users/index.html.haml
radiantcms-couchrest_model-0.1.5 app/views/admin/users/index.html.haml
radiant-0.7.2 app/views/admin/users/index.html.haml
radiant-0.8.2 app/views/admin/users/index.html.haml
radiant-0.8.1 app/views/admin/users/index.html.haml
radiant-0.7.0 app/views/admin/users/index.html.haml
radiant-0.8.0 app/views/admin/users/index.html.haml
radiant-0.7.1 app/views/admin/users/index.html.haml