Sha256: 501e223a776c91e60f82204bb21df180c71bc175bcc819fccf6c6ce3c5341508

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

<h2 class="text-center">Historial del Cargo</h2>
<table class="table table-striped">
  <thead>
    <tr>
      <th>Fecha</th>
      <th>Tipo</th>
      <th>Estatus</th>
      <th>Mensaje</th>
      <th>Monto</th>
    </tr>
  </thead>
  <tbody>
    <% @charges.each do |charge| %>
      <tr>
        <td><%= charge.created_at %></td>
        <td><%= charge.type %></td>
        <td><%= charge.status %></td>
        <td><%= charge.message%></td>
        <td><%= charge.amount%></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
conekta_dashboard-0.0.1 app/views/conekta_dashboard/charges/index.html.erb