Sha256: 8cb83649293f1befef6609e67af5d33f1cc13731b7eedcd453ed3865824db0d9

Contents?: true

Size: 1.54 KB

Versions: 3

Compression:

Stored size: 1.54 KB

Contents

<!-- PHCTitleSEO Title Variables -->
<% phc_title "User Manager" %>
<% phc_title_tagline "Useer Index" %>
<% phc_breadcrumb_one yield(:phc_title) %>
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
<!-- PHCTitleSEO Title Variables -->

<!-- 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>
<!-- Page Bradcrumbs -->

<!-- Page Header -->
<h1 class="page-header"><%= yield(:phc_title) %></h1>
<!-- Page Header -->

<!-- Page Content -->

	<!-- Panel -->
	<div class="panel panel-inverse">

		<!-- Panel - Heading -->
		<div class="panel-heading">
			<h4 class="panel-title"><%= yield(:phc_title) %></h4>
		</div>
		<!-- Panel - Heading -->

		<!-- Panel - Body -->
		<div class="panel-body">

			<!-- 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>
			<!-- Index - Table -->

			<!-- New Button -->
			<!-- New Button -->

		</div>
		<!-- Panel - Body -->

	</div>
	<!-- Panel -->

<!-- Page Content -->

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_accounts_devise-0.1.2.pre.beta app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb
phcdevworks_accounts_devise-0.1.1.pre.beta app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb
phcdevworks_accounts_devise-0.1.0.pre.beta app/views/phcdevworks_accounts_devise/admin/pages/users_list.html.erb