Sha256: ca2cffc06f09c2a22c6ca41441c919bc539b4d34c3984184d51c97ada496b3a6
Contents?: true
Size: 972 Bytes
Versions: 46
Compression:
Stored size: 972 Bytes
Contents
<%= render 'backend/breadcrumbs' %> <%= render 'filter' %> <p class="text-right"> <%= link_to icon(:plus, t('b.add')), new_backend_user_path, class: 'btn btn-primary btn-sm' %> </p> <% if @users.any? %> <table class="table table-hover table-striped"> <thead class="thead-inverse"> <tr> <th><%= t 'b.name' %></th> <th><%= t 'b.email' %></th> <th><%= t 'b.active' %></th> <th> </th> </tr> </thead> <tbody> <% @users.each do |u| %> <tr class="<%= 'text-muted' unless u.active? %>"> <td><%= u.full_name %></td> <td><%= mail_to u.email %></td> <td><%= t u.active?.to_s %></td> <td class="text-right"> <%= link_to_edit [:backend, u] %> <%= link_to_delete [:backend, u] %> </td> </tr> <% end %> </tbody> </table> <%= udongo_paginate @users %> <% else %> <p><%= t 'b.msg.no_items' %></p> <% end %>
Version data entries
46 entries across 46 versions & 1 rubygems