Sha256: d8d5dabec99582430ed9a987abd75b34665f219453fcb1b34c59d041cc920b44

Contents?: true

Size: 969 Bytes

Versions: 75

Compression:

Stored size: 969 Bytes

Contents

<% if current_user.admin_of?(current_account) -%>
  <% content_for :header do -%>
    <h2>Billing Information</h2>
  <% end -%>

  <%= render :partial => 'accounts/subnav' %>

  <div class="current_credit_card">
    <p>We're currently charging the credit card ending in <%= current_account.credit_card.last_4 %>. <%= link_to "Change", edit_account_billing_path(current_account) %></p>
  </div>
  <div class="billing_history">
    <h3>Your Invoices</h3>
    <% if current_account.subscription.transactions.any? -%>
      <table>
        <tr>
          <th>Date</th>
          <th>Amount</th>
        </tr>
        <% current_account.subscription.transactions.each do |transaction| -%>
          <tr>
            <td><%= transaction.created_at.to_s(:short_date) %></td> <td><%= number_to_currency transaction.amount %></td>
          </tr>
        <% end -%>
      </table>
    <% else -%>
      <p>There have been no invoices yet.</p>
    <% end -%>
  </div>
<% end -%>

Version data entries

75 entries across 75 versions & 2 rubygems

Version Path
saucy-0.16.1 app/views/billings/show.html.erb
saucy-0.16.0 app/views/billings/show.html.erb
saucy-0.15.2 app/views/billings/show.html.erb
saucy-0.15.1 app/views/billings/show.html.erb
saucy-0.15.0 app/views/billings/show.html.erb
saucy-0.14.5 app/views/billings/show.html.erb
saucy-0.14.3 app/views/billings/show.html.erb
saucy-0.10.10 app/views/billings/show.html.erb
saucy-0.14.2 app/views/billings/show.html.erb
saucy-0.14.1 app/views/billings/show.html.erb
saucy-0.14.0 app/views/billings/show.html.erb
saucy-0.13.3 app/views/billings/show.html.erb
saucy-0.13.2 app/views/billings/show.html.erb
saucy-0.10.9 app/views/billings/show.html.erb
saucy-0.10.8 app/views/billings/show.html.erb
saucy-0.13.1 app/views/billings/show.html.erb
saucy-0.13.0 app/views/billings/show.html.erb
saucy-0.12.5 app/views/billings/show.html.erb
saucy-0.12.4 app/views/billings/show.html.erb
saucy-0.12.3 app/views/billings/show.html.erb