Sha256: 59d0385253d7685dc28be5099b26b65e3da8b9fa1b987420e46525a0c65b3746

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 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 pull-right">
	<li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
	<li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
</ol>
<!-- Page Bradcrumbs -->

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

<!-- Page Content -->
<div class="row">
	<div class="col-lg-12">

		<!-- 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| %>
                                <td><%= user.username %></td>
                                <td><%= user.firstname %> <%= user.lastname %></td>
                                <td><%= user.email %></td>
                            <% end %>
						</tbody>

					</table>
				</div>
				<!-- Index - Table -->

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

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

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

	</div>
</div>
<!-- Page Content -->

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
phcdevworks_accounts-3.2.0 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
phcdevworks_accounts-3.1.2 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
phcdevworks_accounts-3.1.1 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
phcdevworks_accounts-3.1.0 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
phcdevworks_accounts-3.0.7 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
phcdevworks_accounts-3.0.5 app/views/phcdevworks_accounts/admin/pages/users_list.html.erb