Sha256: 2e9d183f913230194bb8d0aa16c34ffdabd168770ec8ba73f6b97f345d6b47b3

Contents?: true

Size: 557 Bytes

Versions: 3

Compression:

Stored size: 557 Bytes

Contents

<h1>StripeWebhooks (<%= @stripe_webhooks.total_count %> total)</h1>

<table class="table table-hover table-striped">
  <tr>
    <th>Id</th>
    <th>Date</th>
    <th>Stripe ID</th>
  </tr>
  <% @stripe_webhooks.each do |stripe_webhook| %>
    <tr>
      <td><%= link_to stripe_webhook.id, stripe_webhook_path(stripe_webhook.id) %></td>
      <td><%= time_ago_in_words(stripe_webhook.created_at) %> ago</td>
      <td><%= stripe_webhook.stripe_id %></td>
    </tr>
  <% end %>
</table>
<nav>
  <%= paginate @stripe_webhooks, :theme => 'bootstrap' %>
</nav>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
payola_spy-0.0.3 app/views/payola_spy/stripe_webhooks/index.html.erb
payola_spy-0.0.2 app/views/payola_spy/stripe_webhooks/index.html.erb
payola_spy-0.0.1 app/views/payola_spy/stripe_webhooks/index.html.erb