Sha256: 516f9ef63aa4199f509fafc5155c44158358013767494545ac8d1a67cb8e68e0
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
<!-- -PHCDev- Title System --> <% phc_title "User Manager" %> <% phc_title_tagline "Useer Index" %> <% phc_breadcrumb_one yield(:phc_title) %> <% phc_breadcrumb_two yield(:phc_title_tagline) %> <!-- -PHCDev- Title System --> <!-- -PHCDev- Page Bradcrumbs --> <ol class="breadcrumb float-xl-end"> <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li> <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li> </ol> <!-- -PHCDev- Page Bradcrumbs --> <!-- -PHCDev- Page Header --> <h1 class="page-header"><%= yield(:phc_title) %></h1> <!-- -PHCDev- Page Header --> <!-- -PHCDev- Panel --> <div class="panel panel-inverse"> <!-- -PHCDev- Panel - Heading --> <div class="panel-heading"> <h4 class="panel-title"><%= yield(:phc_title) %></h4> </div> <!-- -PHCDev- Panel - Heading --> <!-- -PHCDev- Panel - Body --> <div class="panel-body"> <!-- -PHCDev- Index - Table --> <div class="table-responsive"> <table class="table table-striped table-bordered"> <thead> <tr> <th>Username</th> <th>Full Name</th> <th>Email</th> </tr> </thead> <tbody> <% @admin_users.each do |user| %> <tr> <td><%= user.username %></td> <td><%= user.firstname %> <%= user.lastname %></td> <td><%= user.email %></td> </tr> <% end %> </tbody> </table> </div> <!-- -PHCDev- Index - Table --> <!-- -PHCDev- New Button --> <!-- -PHCDev- New Button --> </div> <!-- -PHCDev- Panel - Body --> </div> <!-- -PHCDev- Panel -->
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcdevworks_accounts_devise-0.1.3.pre.beta | app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb |