Sha256: d69526684a761abf729e40bc294c09642232b446980474162bf4b900d796b917

Contents?: true

Size: 568 Bytes

Versions: 1

Compression:

Stored size: 568 Bytes

Contents

<p>
  <strong>Email:</strong>
  <%= @customer.email %>
</p>

<p>
  <strong>Stripe:</strong>
  <%= @customer.stripe_id %>
</p>

<p>
  <strong>Created:</strong>
  <%= created_datetime(@customer.created_at) %>
</p>

<p>
  <strong>Description:</strong>
  <%= @customer.description %>
</p>

<% if @customer.account_balance.present? && @customer.account_balance != 0 %>
  <p>
    <strong>Account balance:</strong>
    <%= @customer.account_balance %>
  </p>
<% end %>

<%= link_to 'Edit', edit_admin_customer_path(@customer) %> |
<%= link_to 'Back', admin_customers_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tang-0.0.1 app/views/tang/admin/customers/show.html.erb