Sha256: 21048df004bfed16cacd30539dfbfb7604d5a6cba10ff66bce71fd0f5c317b60

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 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- 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_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

4 entries across 4 versions & 1 rubygems

Version Path
phcdevworks_accounts_stripe-1.1.1 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb
phcdevworks_accounts_stripe-1.1.0 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb
phcdevworks_accounts_stripe-1.0.4 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb
phcdevworks_accounts_stripe-1.0.3 app/views/phcdevworks_accounts_stripe/admin/customers/admin_customer_list.html.erb