Sha256: 08c216a22ff98fd52aa637891f58f4347a25285fe9ae72b475c218c157b17529

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

<!-- -PHCDev- Title System -->
<% phc_title "Customer Manager" %>
<% phc_title_tagline "Stripe Customer List" %>
<% phc_breadcrumb_one "Home" %>
<% 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_tagline) %></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>Customer Name</th>
						<th>Customer Email</th>
					</tr>
				</thead>

				<tbody>
					<% @admin_customer_list.each do |customers| %>
						<tr>
							<td><%= customers.name %></td>
							<td><%= customers.email %></td>
						</tr>
					<% end %>
				</tbody>

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

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_accounts_stripe-1.0.2 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb
phcdevworks_accounts_stripe-1.0.1 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb
phcdevworks_accounts_stripe-1.0.0 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb