Sha256: 03bd069d38554e88af68a4086ca4fbcbb0e159f257a45cbc0a42a1113d68f8b1

Contents?: true

Size: 660 Bytes

Versions: 4

Compression:

Stored size: 660 Bytes

Contents

<%= @account.inspect %>
<h2>
  total: <%= @account.total %>
  <br />
  balance: <%= @account.balance %>
</h2>
<hr />
Charges:<br />
<% @account.charges.each do |charge| %>
  <%= charge.inspect %>
<% end %>
<%= link_to :charge, [:new, @account, :charge] %>
<hr />
Modifiers:<br />
<% @account.modifiers.each do |modifier| %>
  <%= modifier.inspect %>
<% end %>
<%= link_to :modifier, [:new, @account, :modifier] %>
<div>
  <% @account.modifier_items.each do |mi| %>
    <%= mi.inspect %><br />
  <% end %>
</div>
<hr />
Payments:<br />
<% @account.payments.each do |payment| %>
  <%= payment.inspect %>
<% end %>
<%= link_to :pay, [:new, @account, :payment] %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
billing-0.0.4b app/views/billing/accounts/show.html.erb
billing-0.0.4a app/views/billing/accounts/show.html.erb
billing-0.0.4 app/views/billing/accounts/show.html.erb
billing-0.0.3 app/views/billing/accounts/show.html.erb