Sha256: 05a7e5337ac0302a2e961b1bf5a29674fe9689168d4a4f4641b1dad96a1066e6

Contents?: true

Size: 1.55 KB

Versions: 4

Compression:

Stored size: 1.55 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- 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- Bradcrumbs -->

<!-- -PHCDEV- Header -->
<h1 class="page-header"><%= yield(:phc_title) %></h1>
<!-- -PHCDEV- 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

4 entries across 4 versions & 1 rubygems

Version Path
phcdevworks_accounts_devise-1.1.1 app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb
phcdevworks_accounts_devise-1.1.0 app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb
phcdevworks_accounts_devise-1.0.1 app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb
phcdevworks_accounts_devise-1.0.0 app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb